Files
netch/scripts/deps/cloak.ps1
2021-08-01 17:00:23 +08:00

16 lines
294 B
PowerShell

param (
[string]
$OutputPath
)
try {
Invoke-WebRequest `
-Uri 'https://github.com/cbeuw/Cloak/releases/download/v2.5.5/ck-client-windows-amd64-v2.5.5.exe' `
-OutFile 'ck-client.exe'
}
catch {
exit 1
}
mv -Force 'ck-client.exe' $OutputPath
exit 0