March 7th, 2015

PowerTip: Use PowerShell to Read the Content of a ZIP File

Doctor Scripto
Scripter

Summary: Learn how to use Windows PowerShell to read the content of a .zip file.

Hey, Scripting Guy! Question How can I read the content of a .zip file from within Windows PowerShell?

 Hey, Scripting Guy! Answer Use the OpenRead static method from the IO.Compression.ZipFile .NET Framework class.
            First, you will need to load the assembly that contains the class. Here is an example:

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

[io.compression.zipfile]::OpenRead("E:\Ch10.zip").Entries.Name

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.