diff --git a/Install-AteraAgent.ps1 b/Install-AteraAgent.ps1 index 340cf83..94d930a 100644 --- a/Install-AteraAgent.ps1 +++ b/Install-AteraAgent.ps1 @@ -39,7 +39,7 @@ If ( $INSTALL ) { ## Install the agent LogMsg "Installing Atera agent" - Try { Start-Process "msiexec.exe" -ArgumentList "/i ""${AGENT_INSTALLER}"" /qn /norestart INTEGRATORLOGIN=${INTEGRATOR_ID} COMPANYID=${CUSTOMER_ID}" -Wait } + Try { Start-Process "msiexec.exe" -ArgumentList "/i ""${AGENT_INSTALLER}"" /qn /norestart" -Wait } Catch { LogErr $_.Exception.Message } ## Delete the agent installer diff --git a/Tools.ps1 b/Tools.ps1 index ab3c94a..43db34d 100644 --- a/Tools.ps1 +++ b/Tools.ps1 @@ -265,7 +265,7 @@ Function IsWindowsBuild { } } -## Get the path to the TEMP folder (context dependant) +## Get the path to the TEMP folder (context dependent) Function GetTempPath { Return [System.IO.Path]::GetTempPath() } ## Determine if the system is 64-bit or not