Files
netch/scripts/download.ps1
2021-07-16 06:00:50 +08:00

18 lines
166 B
PowerShell

param (
[string]
$name,
[string]
$address
)
try
{
Invoke-WebRequest -OutFile $name -Uri $address
}
catch
{
exit 1
}
exit 0