This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Load Veeam snapin | |
| Add-PsSnapin -Name VeeamPSSnapIn -ErrorAction SilentlyContinue | |
| Clear-Host | |
| Write-Host "Veeam Single VM Backup Script`n" | |
| Write-Host "Notes:" | |
| Write-Host "VM must be explicitly defined in the job" | |
| Write-Host "VM can not be inherited by a folder, datastore or other object" | |
| Write-Host "else it will get excluded as well and job will be empty." | |
| Write-Host "Always confirm job completion via Veeam BR Console!" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| asnp "VeeamPSSnapIn" -ErrorAction SilentlyContinue | |
| #region User-Variables | |
| # Report Title | |
| $rptTitle = "My Veeam Report" | |
| # Report mode - valid modes: any number of hours, Weekly or Monthly | |
| # 24, 48, "Weekly", "Monthly" | |
| $reportMode = 24 | |
| # File Output path and filename | |
| # When $sendEmail is set to $false, file is created and opened in default browser |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| asnp "VeeamPSSnapIn" -ErrorAction SilentlyContinue | |
| #region User-Variables | |
| # Report Title | |
| $rptTitle = "My Veeam Report" | |
| # Report mode - valid modes: any number of hours, Weekly or Monthly | |
| # 24, 48, "Weekly", "Monthly" | |
| $reportMode = 24 | |
| # File Output path and filename | |
| # When $sendEmail is set to $false, file is created and opened in default browser |
OlderNewer