PowerShell unzip plusieurs fichiers

Get-ChildItem 'zipped path here' -Filter *.zip | Expand-Archive -DestinationPath 'path to extracted here' -Force
Cheerful Chipmunk