added download/unpack scripts
This commit is contained in:
10
scripts/unpack.ps1
Normal file
10
scripts/unpack.ps1
Normal file
@@ -0,0 +1,10 @@
|
||||
# Usage: .\unpack.ps1 filename.zip
|
||||
# Usage: .\unpack.ps1 filename.zip c:\
|
||||
$FILENAME=$args[0]
|
||||
|
||||
if ($args.count -gt 1) {
|
||||
$DESTPATH=$args[1]
|
||||
Expand-Archive -Force -Path "${FILENAME}" -DestinationPath "${DESTPATH}"
|
||||
} else {
|
||||
Expand-Archive -Force -Path "${FILENAME}"
|
||||
}
|
Reference in New Issue
Block a user