Is it possible to create a zip archive using PowerShell?
|
|
If you head on over to CodePlex and grab the PowerShell Community Extensions, you can use their |
|||||||||||||
|
|
Install 7zip and use this powershell method
You can the call it like this
|
|||
|
|
|
For compression, I would use a standard library (7-zip is good like If you install 7-zip, the installed directory will contain 7z.exe which is a console application. If you wish to engage with the DLL, that should also be possible. |
|||||
|
|
This compresses the contents of .\in to .\out.zip with System.IO.Packaging.ZipPackage following the example here
|
|||||
|
|
Powershell itself has the ability to zip files (with a You can read the full article here You can also find a complementary for this here |
|||
|
|
|
A pure Powershell alternative that works with Powershell 3 and .NET 4.5 (if you can use it):
Just pass in the full path to the zip archive you would like to create and the full path to the directory containing the files you would like to zip. |
|||
|
|
|
This is really obscure but works. 7za.exe is standalone version of 7zip and is available with install package.
|
||||
|
|
|
What about System.IO.Packaging.ZipPackage? Requires .NET framework version >= 3.0. |
|||||
|
|
Not out of the box but you can use SharpZipLib with PowerShell |
|||
|
|
|
I use this snippet to check my database backups folder for backup files not compressed yet, compress them using 7-Zip, and finally deleting the "*.bak" files to save some disk space. Notice files are ordered by lenght (smallest to biggest) before compression to avoid some files not being compressed.
Here you can check a PowerShell script to backup, compress and transfer those files over FTP. |
|||
|
|
