From e482c9507a8d4d43a2405982e2c0c0de3e9b2396 Mon Sep 17 00:00:00 2001 From: dyoder Date: Tue, 21 Sep 2021 10:43:10 -0400 Subject: [PATCH] don't make INTEGRATOR_ID url safe since we aren't direcly downloading --- Install-AteraAgent.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Install-AteraAgent.ps1 b/Install-AteraAgent.ps1 index aadd53c..2cee5b6 100644 --- a/Install-AteraAgent.ps1 +++ b/Install-AteraAgent.ps1 @@ -6,8 +6,8 @@ ) ## Make $INTEGRATOR_ID URL safe -$INTEGRATOR_ID = $INTEGRATOR_ID -replace [Regex]::Escape('@'),'%40' -$INTEGRATOR_ID = $INTEGRATOR_ID -replace [Regex]::Escape('+'),'%2B' +#$INTEGRATOR_ID = $INTEGRATOR_ID -replace [Regex]::Escape('@'),'%40' +#$INTEGRATOR_ID = $INTEGRATOR_ID -replace [Regex]::Escape('+'),'%2B' ## Set the Atera URL for your specific environment $BASE_URL = 'https://emberkom.atera.com'