PowerShell/Scripts/new-zipfile.ps1
2021-09-16 20:19:10 +02:00

30 lines
781 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 {
"⚠️ Error: $($Error[0]) ($($MyInvocation.MyCommand.Name):$($_.InvocationInfo.ScriptLineNumber))"
exit 1
}