Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Get-ChildItem -Directory | ForEach-Object {
- $folderPath = $_.FullName
- Get-ChildItem -Path $folderPath -Filter "*.zip" | ForEach-Object {
- Expand-Archive -Path $_.FullName -DestinationPath $folderPath -Force
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment