Replace invalid character with '

This commit is contained in:
Joshua Post
2021-05-24 14:41:56 -05:00
parent a8d656e879
commit 83447772b6

View File

@@ -35,9 +35,9 @@ Function Backup-VCSAToFile {
-CommonBackup will only backup the config whereas -Fullbackup grabs the historical data as well -CommonBackup will only backup the config whereas -Fullbackup grabs the historical data as well
#> #>
param ( param (
[Parameter(ParameterSetName=FullBackup)] [Parameter(ParameterSetName='FullBackup')]
[switch]$FullBackup, [switch]$FullBackup,
[Parameter(ParameterSetName=CommonBackup)] [Parameter(ParameterSetName='CommonBackup')]
[switch]$CommonBackup, [switch]$CommonBackup,
[ValidateSet('FTPS', 'HTTP', 'SCP', 'HTTPS', 'FTP')] [ValidateSet('FTPS', 'HTTP', 'SCP', 'HTTPS', 'FTP')]
$LocationType = "FTP", $LocationType = "FTP",