Compress-Archive -Path C:\Documents\* -CompressionLevel Optimal -DestinationPath C:\Archives\Documents.zip
This command:
Compresses all files in C:\Documents
Uses Optimal compression
Save the resulting archive in C:\Archives\Documents.zip
-DestinationPath will add .zipif not present.
-Li...
Compress-Archive -Path C:\Documents\* -Update -DestinationPath C:\Archives\Documents.zip
this will add or replace all files Documents.zip with the new ones from C:\Documents
Expand-Archive -Path C:\Archives\Documents.zip -DestinationPath C:\Documents
this will extract all files from Documents.zip into the folder C:\Documents