mirror of
https://github.com/netchx/netch.git
synced 2026-04-13 20:53:22 +08:00
8 lines
243 B
PowerShell
8 lines
243 B
PowerShell
param([string]$OutputPath)
|
|
$address="https://github.com/cbeuw/Cloak/releases/download/v2.5.5/ck-client-windows-amd64-v2.5.5.exe"
|
|
|
|
Invoke-WebRequest -Uri $address -OutFile ck-client.exe
|
|
|
|
Move-Item -Force ck-client.exe $OutputPath
|
|
exit 0
|