From a9a542ec2cf5d028306ee2a2d1b237276e4b608d Mon Sep 17 00:00:00 2001 From: dyoder Date: Sat, 7 Nov 2020 20:31:32 -0500 Subject: [PATCH] fix quoting --- Install-EmberkomBackup.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Install-EmberkomBackup.ps1 b/Install-EmberkomBackup.ps1 index bfc0335..93f5981 100644 --- a/Install-EmberkomBackup.ps1 +++ b/Install-EmberkomBackup.ps1 @@ -13,4 +13,4 @@ $URL = "http://downloads.backupops.com/4Windows/${MSPName}Backup_installer.exe" $Arguments = "/SP- /VERYSILENT /NORESTART /WPUSH /WACCOUNT ""${ClientShortName}_${Env:COMPUTERNAME}"" /WORG ""${ClientLongName}"" /WEMAIL ""${ClientNotificationEmail}""" ## Install Emberkom Backup -Install-Program -Path $(Download-File -URL $URL) -Arguments $Arguments -Delete \ No newline at end of file +Install-Program -Path $(Download-File -URL $URL) -Arguments "${Arguments}" -Delete \ No newline at end of file