I am working on a project to compress files that range anywhere from a couple mb to several gb's big and I am trying to use powershell to compress them into a .zip. The main problem I am having is that using Compress-Archive has a 2 Gb cap to individual file size, and I was wondering if there was another method to compress files.
Edit:
So for this project we are looking to implement a system to take .pst files from outlook and compress them to a .zip and upload them to a server. Once they are uploaded they will be pulled down from a new device and extracted into a .pst file again.
NOTE
Further updates to this function will be published to the official GitHub repo as well as to the PowerShell Gallery. The code in this answer will no longer be maintained.
Contributions are more than welcome, if you wish to contribute, fork the repo and submit a pull request with the changes.
To explain the limitation named on PowerShell Docs for
Compress-Archive
:This happens because, presumably (since 5.1 version is closed source), this cmdlet uses a Memory Stream to hold all zip archive entries in memory before writing the zip archive to a file. Inspecting the InnerException produced by the cmdlet we can see:
We would also see a similar issue if we attempt to read all bytes from a file larger than 2Gb:
Coincidentally, we see the same limitation with
System.Array
:There is also another limitation pointed out in this question,
Compress-Archive
can't compress if another process has a handle on a file.How to reproduce?
To overcome this issue, and also to emulate explorer's behavior when compressing files used by another process, the function posted below will default to
[FileShare] 'ReadWrite, Delete'
when opening aFileStream
.To get around this issue there are two workarounds:
ZipFile.CreateFromDirectory
Method. There are 3 limitations while using this static method:Worth noting, if you need to use the
ZipFile
Class in Windows PowerShell (.NET Framework) there must be a reference toSystem.IO.Compression.FileSystem
. See inline comments.ZipArchive
and the correspondingZipEntries
.This function should be able to handle compression same as
ZipFile.CreateFromDirectory
Method but also allow filtering files and folders to compress while keeping the file / folder structure untouched.Documentation as well as usage example can be found here.