Microsoft.PowerShell.Archive
Microsoft.PowerShell.Archive copied to clipboard
Archive PowerShell module contains cmdlets for working with ZIP archives
I frequently find a need to get the metadata of items in an archive. Something like `Get-Archive` sounds good. Could/should this be integrated to Get-ChildObject? Something like: `Get-ChildItem -Path '.\anarchive.zip'...
Originally posted by MDrobul on Connect and has since been moved [to UserVoice](http://windowsserver.uservoice.com/forums/301869-powershell/suggestions/11088612-compress-archive-add-password-switch-to-allow-crea): > Add support to create password protected zip files and extract them.
Cab files are still used for various scenarios in the latest versions of Windows. They are also used by ISVs, particularly OEMs for distribution of things like device drivers. On...
_From @MaximoTrinidad on October 3, 2016 15:44_ ## Steps to reproduce Ran Compress-Archive command to create a *.gz compress file. Compress-Archive -Path /home/maxt/Documents -DestinationPath /home/maxt/MyArchives/Mycsvfiles.gz ## Expected behavior This cmdlet...
# Summary of the new feature/enhancement I would like to see `Expand-Archive` support PE (Portable Executable) archive type, which was created by Microsoft, and is frequently used in Windows. As...
### Summary of the new feature / enhancement Just discovered that the cmdlet *expand-archive* cannot extract multiple referenced input archived files such as *.zip to expand into a single destination...
If you try and expand an archive which contains files that have long paths in it `Expand-Archive` will raise errors and not properly expand the contents. Repo script ```PowerShell New-Item...
compress-archive does not create ZIP file when called via Invoke-Command with the -AsJob parameter specified. see examples below. #this works fine, of course compress-archive -path "C:\foo" -destinationPath "C:\bar\my.zip" -force #this...
1. Install client of open ssh on windows https://docs.microsoft.com/en-us/windows-server/administration/openssh/openssh_install_firstuse 2. install server on windows https://docs.microsoft.com/en-us/windows-server/administration/openssh/openssh_install_firstuse 3. Run script which expands archive over SSH: ``` . $PSScriptRoot/variables.ps1 $archiveVersion = $MONGO_VERSION $download...
# PowerShell Archive Support On of biggest desired features of mine has always been a PSProvider for Archive/ZipFile Support in powershell. So for the past few months I have been...