mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
25 lines
554 B
PowerShell
25 lines
554 B
PowerShell
param (
|
|
[string]
|
|
$OutputPath
|
|
)
|
|
|
|
try {
|
|
Invoke-WebRequest `
|
|
-Uri 'https://github.com/teddysun/v2ray-plugin/releases/download/v4.40.1/v2ray-plugin-windows-amd64-v4.40.1.tar.gz' `
|
|
-OutFile 'v2ray-plugin.tar.gz'
|
|
}
|
|
catch {
|
|
exit 1
|
|
}
|
|
|
|
7z x 'v2ray-plugin.tar.gz'
|
|
if ( -Not $? ) { exit $lastExitCode }
|
|
|
|
7z x 'v2ray-plugin.tar'
|
|
if ( -Not $? ) { exit $lastExitCode }
|
|
|
|
mv -Force 'v2ray-plugin_windows_amd64.exe' "$OutputPath\v2ray-plugin.exe"
|
|
|
|
rm -Force 'v2ray-plugin.tar'
|
|
rm -Force 'v2ray-plugin.tar.gz'
|
|
exit 0 |