powershell 脚本移动备份文件

powershell 脚本移动备份文件

我想使用 powershell 1.0 压缩 sql bakup 文件并将其从一个目录移动到另一个目录,你能帮助我吗,因为我是初学者

答案1

CodePlex您可以获取他们的 PowerShell 扩展来使用他们的write-zip扩展。

$source = "directory you're zipping from"
$destination = "directory you want to zip to"
Write-zip -LiteralPath $source -OutputPath $destination

如果您想在压缩 .bkp 文件后将其删除,则可以使用。如果遇到问题,Remove-Item请尝试在 PowerShel 中使用。Get-Help

相关内容