如何用Powershell定期压缩文件并删除

本篇将介绍如何使用Powershell定期压缩文件并删除。 要想执行本操作,首先要确定计算机已经安装了软件7zip。 以下代码仅仅删除7天以内文件。 具体Powershell代码如下: Function Zip {Param([string]$zipFile,[string[]]$toBeZipped)$CurDir = Get-LocationSet-Location “C:Program Files7-zip”.7z.exe A -tzip $zipFile $toBeZipped | out-nullSet-Location $CurDir}$files1 = (Get-ChildItem D:TestlocationLogs*.* ) If((Test-Path D:TestlocationShare$(get-date -f…