mirror of
https://github.com/netchx/netch.git
synced 2026-04-13 20:53:22 +08:00
22 lines
430 B
PowerShell
22 lines
430 B
PowerShell
param (
|
|
[string]
|
|
$OutputPath
|
|
)
|
|
|
|
try {
|
|
Invoke-WebRequest `
|
|
-Uri 'https://github.com/XTLS/Xray-core/releases/download/v1.4.2/Xray-windows-64.zip' `
|
|
-OutFile 'xray-core.zip'
|
|
}
|
|
catch {
|
|
exit 1
|
|
}
|
|
|
|
7z x 'xray-core.zip' -o'xray-core'
|
|
if ( -Not $? ) { exit $lastExitCode }
|
|
|
|
mv -Force 'xray-core\xray.exe' $OutputPath
|
|
|
|
rm -Recurse -Force xray-core
|
|
rm -Recurse -Force xray-core.zip
|
|
exit 0 |