POWERSHELL 2 READ ZIP

Use PowerShell to Read the Content of a ZIP File

How to read the content of a .zip file from within Windows PowerShell?

Use the OpenRead static method from the IO.Compression.ZipFile .NET Framework class.

First, we need to load the assembly that contains the class.

Here is an example:

Add-Type -assembly "system.io.compression.filesystem"

[io.compression.zipfile]::OpenRead("C:\DISU.zip").Entries.Name

Comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.