Archive module:
*Compress-Archive with wildcard
Compress-Archive -Path C:\Documents\* -CompressionLevel Optimal -DestinationPath C:\Archives\Documents.zip
This command:
C:\Documents
Optimal compression
C:\Archives\Documents.zip
-DestinationPath will add .zipif not present.
-LiteralPath can be used if you require naming it without .zip.