使用通配符压缩存档
Compress-Archive -Path C:\Documents\* -CompressionLevel Optimal -DestinationPath C:\Archives\Documents.zip
这个命令:
- 压缩
C:\Documents
中的所有文件 - 使用
Optimal
压缩 - 将生成的存档保存在
C:\Archives\Documents.zip
中-DestinationPath
将添加.zip
if 不存在。- 如果你需要在没有
.zip
的情况下命名它,可以使用-LiteralPath
。