mirror of
https://github.com/netchx/netch.git
synced 2026-03-18 18:13:21 +08:00
19 lines
218 B
PowerShell
19 lines
218 B
PowerShell
param (
|
|
[string]
|
|
$name,
|
|
|
|
[string]
|
|
$address
|
|
)
|
|
|
|
try
|
|
{
|
|
Expand-Archive -Force -Path $name -DestinationPath $address
|
|
}
|
|
catch
|
|
{
|
|
Write-Host "Extract $name failed"
|
|
exit 1
|
|
}
|
|
|
|
exit 0 |