mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-08 17:14:28 +01:00
28 lines
643 B
PowerShell
Executable File
28 lines
643 B
PowerShell
Executable File
<#
|
|
.SYNOPSIS
|
|
zip-dir.ps1 [<directory>]
|
|
.DESCRIPTION
|
|
Creates a zip archive of the given directory
|
|
.EXAMPLE
|
|
PS> .\zip-dir.ps1 C:\Windows
|
|
.LINK
|
|
https://github.com/fleschutz/PowerShell
|
|
.NOTES
|
|
Author: Markus Fleschutz / License: CC0
|
|
#>
|
|
|
|
param([string]$Directory = "")
|
|
|
|
try {
|
|
if ($Directory -eq "" ) { $Directory = read-host "Enter the path to the directory to zip" }
|
|
|
|
$Directory = resolve-path $Directory
|
|
compress-archive -path $Directory -destinationPath $Directory.zip
|
|
|
|
"✔️ created zip archive: $($Directory).zip"
|
|
exit 0
|
|
} catch {
|
|
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
|
|
exit 1
|
|
}
|