Answers for "Compress files powershell"

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
0

Compress files powershell

Compress-Archive -Path (Join-Path $filesDir "*.*") -DestinationPath (Join-Path $outDir "Files_Compressed.zip")
Posted by: Guest on October-06-2020
0

Compress files powershell

#Ordner komprimieren
Compress-Archive

#Ordner dekomprimieren
Expand-Archive
Posted by: Guest on October-06-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language