Files
netch/scripts/download/cloak.ps1
Connection Refused bc0e5d0dcf Rename scripts
2021-04-27 08:43:35 +08:00

8 lines
243 B
PowerShell

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