Enrico
Admin
Member
Joined: Mar 26, 2020
Last seen: Sep 26, 2025
Last seen: Sep 26, 2025
Follow
Answer to: Powershell function: Unzip all files in a folder
Extract zip files to the same location with same folder name (removed .zip) gci -Recurse -Filter *.zip |ForEach-Object {$n=($_.Fullname.trimend('.zi...
4 years ago
Forum
Answer to: Powershell function: Unzip all files in a folder
This should work. Get-ChildItem 'path to folder' -Filter *.zip | Expand-Archive -DestinationPath 'path to extract' -Force Also, this one it is a bi...
4 years ago
Forum
4 years ago
Forum
Replies: 1
Views: 1773
Forum
Replies: -1
Views: 1824