v2.0.7
What's Changed
-
Adds
-Exclude
Parameter toCompress-ZipArchive
by @santisq in #31. This parameter allows to exclude items from source. For example, if you wanted to compress thepath
folder excluding any file having the.xyz
extension and any folder namedtest
(including all its child items), you could do:Compress-ZipArchive .\path -Destination myPath.zip -Exclude *.xyz, *\test\*
Full Changelog: v2.0.6...v2.0.7