When expanding multiple zip files via the pipeline, a deep hierarchy is created Repro: ```PowerShell mkdir x "" > x\a 'a','b','c' | % { Compress-Archive -Path .\x -DestinationPath ".\${_}.zip"} dir *.zip | Expand-Archive dir a dir a\b dir a\b\c ``` Expected: Tree like: ``` d:. |--a |--|--x |--b |--|--x |--c |--|--x |--x ``` Actual: ``` d:. |--a |--|--b |--|--|--c |--|--|--|--x |--|--|--x |--|--x |--x ```