use url safe ascii codes for special characters in $INTEGRATOR_ID email addresses

This commit is contained in:
2021-08-19 12:32:07 -04:00
parent fbdd0967d1
commit 53105b1e4a
+4
View File
@@ -5,6 +5,10 @@
[Parameter(Mandatory=$false)][switch]$FORCE
)
## Make $INTEGRATOR_ID URL safe
$INTEGRATOR_ID = $INTEGRATOR_ID -replace '@','%40'
$INTEGRATOR_ID = $INTEGRATOR_ID -replace '+','%2B'
## Set the Atera URL for your specific environment
$BASE_URL = 'https://emberkom.atera.com'