Compress a Directory with 7-zip and Powershell

Ensure you have 7-zip installed, obviously.  I adapted this from some other code I found on the internets, but unfortunately I can’t find the original post, so apologies for not giving the original author props.

# Alias for 7-zip
if (-not (test-path "$env:ProgramFiles\7-Zip\7z.exe")) {throw "$env:ProgramFiles\7-Zip\7z.exe needed"}
set-alias sz "$env:ProgramFiles\7-Zip\7z.exe"

$path = "C:\Test\ScriptDB\"

foreach($dir in gci -Path $path | where{$_.PSIsContainer})
{
	$zipFile = $path + $dir.Name + ".zip"
	sz a -tzip "$zipfile" $dir.FullName
	Remove-Item $dir.FullName -Recurse -Force
}

One thought on “Compress a Directory with 7-zip and Powershell

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.