我想使用PowerShell压缩多个文件夹。当我通过PowerShell执行此操作时,其大小约为172 MB,而当我手动对其进行压缩时,其大小约为175 MB,这对我来说是个问题。
我使用的PowerShell脚本:
$source = "C:\fso"
$destination = "C:\fso1\FSO_Backup.zip"
if (Test-Path $destination) {Remove-Item $destination}
Add-Type -Assembly "System.IO.Compression.Filesystem"
[IO.Compression.Zipfile]::CreateFromDirectory($Source, $destination)
我尝试使用最佳/快速压缩,但没有用。
有人可以帮助我吗?我想使用与手动操作相同的压缩级别进行压缩。