Get the contents of a zip file using powershell
New-zip | Get-zip | Extract-Zip | Move-Zip | Copy-Zip |
############################################################ # # NAME : Get-ZIP # # AUTHOR : Wessel van Sandwijk # # Website : http://www.useful-it.nl # # COMMENT : Get ZipFile # # VERSION HISTORY : # 1.0 07-MRT-2013 - Initial Version # ############################################################ Get-Zip c:\demo\myzip.zip ############################################################ # # FUNCTIONS # ############################################################ function Get-Zip { param([string]$zipfilename) if(test-path($zipfilename)) { $shellApplication = new-object -com shell.application $zipPackage = $shellApplication.NameSpace($zipfilename) $zipPackage.Items() | Select Path } }
Latest posts by wvsandwijk (see all)
- [PS] How to validate VMWare ESX Certificates - September 7, 2018
- PoSH-Git : unable to start ssh-agent service, error :1058 - July 22, 2018
- [PS] Speedup VMWare PowerShell module - June 11, 2018