2
PowerShell zip 파일을 동 기적으로
PowerShell 스크립트에서 폴더를 삭제하기 전에 폴더를 압축하고 싶습니다. 다음을 실행합니다 (스 니펫을 찾은 곳을 기억하지 못합니다). 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) …