When I run ```posh Compress-Archive $pwd -Destination ..\Compressed.zip ``` I always get a (redundant) single top-level folder in the zip We need an option to **not** create that top level folder. Note that this does *not* work: ```posh Get-ChildItem $pwd | Compress-Archive -Destination ..\Compressed.zip ``` Because the resulting zip will be missing any empty subfolders of `$pwd`