Files
Intune/dump/WSUS_Scripts/Old-Scripts/Stop-Backups.ps1

7 lines
274 B
PowerShell

#Disable VEEAM Job Schedule - Schedule to Run at 7pm on maintenance day
Add-PSSnapin -Name VeeamPSSnapIn
Connect-VBRServer -Server PVEB001
Get-VBRJob | where {$_.JobTargetType -eq "Backup" -and $_.IsScheduleEnabled -eq $true} | Disable-VBRJobSchedule
Disconnect-VBRServer