Add the ability to $IgnoreMissingBackupSources

- when $true, missing external drives or folders don't produce errors
- when $null or $false, missing drives and/or folders result in an error
- Default is set ot $false as not to silently fail backing up a source
This commit is contained in:
Kevin Woley
2021-09-10 21:51:01 -07:00
parent d448db94c0
commit fac2462981
2 changed files with 56 additions and 17 deletions
+1
View File
@@ -9,6 +9,7 @@ $LogPath = Join-Path $InstallPath "logs"
$LogRetentionDays = 30
$InternetTestAttempts = 10
$GlobalRetryAttempts = 4
$IgnoreMissingBackupSources = $false
# maintenance configuration
$SnapshotMaintenanceEnabled = $true