Files
netch/scripts/download/cloak.ps1
2021-09-14 09:42:00 +08:00

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