PowerShell/Scripts/new-zipfile.ps1
2021-09-05 19:46:52 +02:00

30 lines
767 B
PowerShell
Executable File

<#
.SYNOPSIS
new-zipfile.ps1 [<directory>]
.DESCRIPTION
Creates a new .zip file from a directory.
.EXAMPLE
PS> .\new-zipfile.ps1 C:\Windows
.NOTES
Author: Markus Fleschutz · License: CC0
.LINK
https://github.com/fleschutz/PowerShell
#>
param([string]$directory = "")
try {
if ($directory -eq "" ) { $directory = read-host "Enter the path to the directory to zip" }
$StopWatch = [system.diagnostics.stopwatch]::startNew()
$directory = resolve-path $directory
compress-archive -path $directory -destinationPath $directory.zip
[int]$Elapsed = $StopWatch.Elapsed.TotalSeconds
"✔️ created zip file $($directory).zip in $Elapsed sec"
exit 0
} catch {
write-error "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"
exit 1
}