Files
netch/scripts/download/cloak.ps1
2021-05-28 23:29:13 +08:00

8 lines
243 B
PowerShell

param([string]$OutputPath)
$address="https://github.com/cbeuw/Cloak/releases/download/v2.5.4/ck-client-windows-amd64-v2.5.4.exe"
Invoke-WebRequest -Uri $address -OutFile ck-client.exe
Move-Item -Force ck-client.exe $OutputPath
exit 0