Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
powershell:qnd:file_operations [2022/06/18 14:57] – [Common Commands By Example] mgupton | powershell:qnd:file_operations [2022/10/06 20:13] (current) – mgupton | ||
---|---|---|---|
Line 93: | Line 93: | ||
$archive.Entries | Select-Object -Property FullName | $archive.Entries | Select-Object -Property FullName | ||
+ | </ | ||
+ | |||
+ | Unzip zip archives contained in another zip archive. | ||
+ | <code powershell> | ||
+ | Expand-Archive -DestinationPath .\zips ' | ||
+ | ls .\zips\ | % {Expand-Archive -DestinationPath $env:temp $_.FullName} | ||
</ | </ | ||