mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
17 lines
558 B
PowerShell
17 lines
558 B
PowerShell
param([string]$OutputPath)
|
|
$name="v2ray-core.zip"
|
|
$address="https://github.com/v2fly/v2ray-core/releases/download/v4.40.1/v2ray-windows-64.zip"
|
|
|
|
..\scripts\download.ps1 $name $address
|
|
if (-Not $?) { exit $lastExitCode }
|
|
|
|
..\scripts\extract.ps1 $name "v2ray-core"
|
|
if (-Not $?) { exit $lastExitCode }
|
|
|
|
Move-Item -Force v2ray-core\v2ctl.exe $OutputPath
|
|
Move-Item -Force v2ray-core\v2ray.exe $OutputPath
|
|
Move-Item -Force v2ray-core\wv2ray.exe $OutputPath
|
|
|
|
Remove-Item -Recurse -Force v2ray-core
|
|
Remove-Item -Recurse -Force v2ray-core.zip
|
|
exit 0 |