I wrote the following code for extracting the .zip files to temp:
function Expand-ZIPFile($file, $destination) { $shell = new-object -com shell.applicati
Get-ChildItem 'path to folder' -Filter *.zip | Expand-Archive -DestinationPath 'path to extract' -Force
requires ps v5