adityapatwardhan / Microsoft.PowerShell.Archive

Archive PowerShell module contains cmdlets for working with ZIP archives

Home Page:https://technet.microsoft.com/en-us/library/dn818910.aspx

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Microsoft.PowerShell.Archive Module

Microsoft.PowerShell.Archive module contains cmdlets that let you create and extract ZIP archives.

AppVeyor (Windows) Travis CI (Linux)
Build status Build Status
  1. Create an archive from an entire folder including subdirectories: Compress-Archive -Path C:\Reference -DestinationPath C:\Archives\Draft.zip
  2. Update an existing archive file: Compress-Archive -Path C:\Reference\* -DestinationPath C:\Archives\Draft.zip -Update
  1. Extract the contents of an archive in the current folder: Expand-Archive -Path SampleArchive.zip
  2. Use -Force parameter to overwrite existing files by those in the archive: Expand-Archive -Path .\SampleArchive.zip -DestinationPath .\ExistingDir -Force

About

Archive PowerShell module contains cmdlets for working with ZIP archives

https://technet.microsoft.com/en-us/library/dn818910.aspx

License:MIT License


Languages

Language:PowerShell 100.0%