mirror of
https://github.com/netchx/netch.git
synced 2026-03-22 18:29:46 +08:00
18 lines
166 B
PowerShell
18 lines
166 B
PowerShell
param (
|
|
[string]
|
|
$name,
|
|
|
|
[string]
|
|
$address
|
|
)
|
|
|
|
try
|
|
{
|
|
Invoke-WebRequest -OutFile $name -Uri $address
|
|
}
|
|
catch
|
|
{
|
|
exit 1
|
|
}
|
|
|
|
exit 0 |