Tengo un .ziparchivo y necesito descomprimir todo su contenido usando Powershell. Estoy haciendo esto pero no parece funcionar: $shell = New-Object -ComObject shell.application $zip = $shell.NameSpace("C:\a.zip") MkDir("C:\a") foreach ($item in $zip.items()) {