Fixed: Unzip File With Powershell in Server 2012 Core #programming #computers #fix
Fixed: Unzip File With Powershell in Server 2012 Core #programming #computers #fix
Unzip File With Powershell in Server 2012 Core
I need to unzip a file with powershell. The typical way I’ve seen everyone do this is by automating the shell with a script.
$shellApplication = new-object -com shell.application $zipPackage = $shellApplication.NameSpace($zipfilename) $destinationFolder = $shellApplication.NameSpace($destination) $destinationFolder.CopyHere($zipPackage.Items())
Thi…
View On WordPress














