Answers for "powershell zip multiple files"

3

powershell zip multiple files

Compress-Archive -Path C:\Reference -DestinationPath C:\Archives\Draft.zip
Posted by: Guest on May-04-2020
1

powershell zip multiple files

$compress = @{
  Path = "C:\Reference\Draftdoc.docx", "C:\Reference\Images\*.vsd"
  CompressionLevel = "Fastest"
  DestinationPath = "C:\Archives\Draft.Zip"
}
Compress-Archive @compress
Posted by: Guest on May-04-2020

Code answers related to "powershell zip multiple files"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language