From 1b91c295e9bb1510220a802869a7e246d454c721 Mon Sep 17 00:00:00 2001 From: Corbin Date: Thu, 22 Aug 2024 10:38:41 -0400 Subject: [PATCH] Use older webclient for compatibility --- rmm/automate/Install-Automate.ps1 | 15 ++++++++++----- rmm/automate/Uninstall-Automate.ps1 | 9 +++++++-- 2 files changed, 17 insertions(+), 7 deletions(-) diff --git a/rmm/automate/Install-Automate.ps1 b/rmm/automate/Install-Automate.ps1 index 6e86fde..b368fdc 100644 --- a/rmm/automate/Install-Automate.ps1 +++ b/rmm/automate/Install-Automate.ps1 @@ -1,9 +1,14 @@ +#!ps +#timeout=3000000 + +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls -bor [Net.SecurityProtocolType]::Tls11 -bor [Net.SecurityProtocolType]::Tls12 + +$PackagePath = 'C:\Packages' + $ServerUrl = 'https://automate.example.com' $ServerPass = '' $LocationId = '' -$PackagePath = 'C:\Packages' - $AgentInstallFile = 'LabTechRemoteAgent.msi' $AgentInstallUrl = "$ServerUrl/LabTech/Service/$AgentInstallFile" $AgentInstallPath = Join-Path -Path $PackagePath -ChildPath $AgentInstallFile @@ -13,7 +18,7 @@ If (!(Test-Path -PathType Container $PackagePath)) { } Write-Host "Downloading Agent Installer..." -Invoke-WebRequest -Uri $AgentInstallUrl -OutFile $AgentInstallerPath -UseBasicParsing +(New-Object Net.WebClient).DownloadFile($AgentInstallUrl, $AgentInstallPath) Write-Host "Starting installation..." -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 +msiexec.exe /i "$AgentInstallPath" /q /lv "$($AgentInstallPath).log" SERVERADDRESS="$ServerUrl" SERVERPASS="$ServerPass" LOCATION="$LocationId" +Write-Host "Log saved at $($AgentInstallPath).log" \ No newline at end of file diff --git a/rmm/automate/Uninstall-Automate.ps1 b/rmm/automate/Uninstall-Automate.ps1 index b40e45c..6cd1530 100644 --- a/rmm/automate/Uninstall-Automate.ps1 +++ b/rmm/automate/Uninstall-Automate.ps1 @@ -1,7 +1,12 @@ +#!ps +#timeout=3000000 + +[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls -bor [Net.SecurityProtocolType]::Tls11 -bor [Net.SecurityProtocolType]::Tls12 + $PackagePath = 'C:\Packages' $AgentUninstallFile = 'Agent_Uninstaller.zip' -$AgentUninstallUri = "https://s3.amazonaws.com/assets-cp/assets/$AgentUninstallFile" +$AgentUninstallUrl = "https://s3.amazonaws.com/assets-cp/assets/$AgentUninstallFile" $AgentUninstallPath = Join-Path -Path $PackagePath -ChildPath $AgentUninstallFile If (!(Test-Path -PathType Container $PackagePath)) { @@ -9,7 +14,7 @@ If (!(Test-Path -PathType Container $PackagePath)) { } Write-Host "Downloading Agent Uninstaller..." -Invoke-WebRequest -Uri $AgentUninstallUri -OutFile $AgentUninstallPath +(New-Object Net.WebClient).DownloadFile($AgentUninstallUrl, $AgentUninstallPath) Write-Host "Expanding Agent Uninstaller..." Expand-Archive -Path $AgentUninstallPath -DestinationPath $PackagePath -Force Write-Host "Invoking Agent Uninstaller..."