2
PowerShell zip dosyası senkronize
Bir PowerShell betiğinde, klasörü silmeden önce bir klasörü sıkıştırmak istiyorum. Aşağıdakileri çalıştırıyorum (snippet'i nerede bulduğumu hatırlamıyorum): function Compress-ToZip { param([string]$zipfilename) if(-not (test-path($zipfilename))) { set-content $zipfilename ("PK" + [char]5 + [char]6 + ("$([char]0)" * 18)) (Get-ChildItem $zipfilename).IsReadOnly = $false } $shellApplication = new-object -com shell.application $zipPackage = $shellApplication.NameSpace($zipfilename) foreach($file in $input) …