使用萬用字元壓縮存檔
Compress-Archive -Path C:\Documents\* -CompressionLevel Optimal -DestinationPath C:\Archives\Documents.zip
這個命令:
- 壓縮
C:\Documents
中的所有檔案 - 使用
Optimal
壓縮 - 將生成的存檔儲存在
C:\Archives\Documents.zip
中-DestinationPath
將新增.zip
if 不存在。- 如果你需要在沒有
.zip
的情況下命名它,可以使用-LiteralPath
。