diff --git a/rmm/automate/Install-Automate.ps1 b/rmm/automate/Install-Automate.ps1 index b5221f4..6e86fde 100644 --- a/rmm/automate/Install-Automate.ps1 +++ b/rmm/automate/Install-Automate.ps1 @@ -13,6 +13,7 @@ If (!(Test-Path -PathType Container $PackagePath)) { } Write-Host "Downloading Agent Installer..." -Invoke-WebRequest -Uri $AgentInstallUrl -OutFile $AgentInstallerPath +Invoke-WebRequest -Uri $AgentInstallUrl -OutFile $AgentInstallerPath -UseBasicParsing Write-Host "Starting installation..." -msiexec.exe /i "$AgentInstallPath" /q /lv "$(Join-Path -Path $PackagePath -ChildPath $AgentInstallerName).log" SERVERADDRESS="$ServerAddress" SERVERPASS="$ServerPass" LOCATION="$LocationId" \ No newline at end of file +msiexec.exe /i "$AgentInstallPath" /q /lv "$(Join-Path -Path $PackagePath -ChildPath $AgentInstallFile).log" SERVERADDRESS="$ServerAddress" SERVERPASS="$ServerPass" LOCATION="$LocationId" +Write-Host "Log saved at $(Join-Path -Path $PackagePath -ChildPath $AgentInstallFile).log" \ No newline at end of file