From 3e1805ad33c48e2964dd55f16a7d5a64f06c1194 Mon Sep 17 00:00:00 2001 From: Corbin Date: Tue, 4 Jun 2024 13:51:12 -0400 Subject: [PATCH] UseBasicParsing and fix log path --- rmm/automate/Install-Automate.ps1 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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