Use older webclient for compatibility

This commit is contained in:
Corbin 2024-08-22 10:38:41 -04:00
parent 0601036fd5
commit 1b91c295e9
2 changed files with 17 additions and 7 deletions

View File

@ -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' $ServerUrl = 'https://automate.example.com'
$ServerPass = '' $ServerPass = ''
$LocationId = '' $LocationId = ''
$PackagePath = 'C:\Packages'
$AgentInstallFile = 'LabTechRemoteAgent.msi' $AgentInstallFile = 'LabTechRemoteAgent.msi'
$AgentInstallUrl = "$ServerUrl/LabTech/Service/$AgentInstallFile" $AgentInstallUrl = "$ServerUrl/LabTech/Service/$AgentInstallFile"
$AgentInstallPath = Join-Path -Path $PackagePath -ChildPath $AgentInstallFile $AgentInstallPath = Join-Path -Path $PackagePath -ChildPath $AgentInstallFile
@ -13,7 +18,7 @@ If (!(Test-Path -PathType Container $PackagePath)) {
} }
Write-Host "Downloading Agent Installer..." Write-Host "Downloading Agent Installer..."
Invoke-WebRequest -Uri $AgentInstallUrl -OutFile $AgentInstallerPath -UseBasicParsing (New-Object Net.WebClient).DownloadFile($AgentInstallUrl, $AgentInstallPath)
Write-Host "Starting installation..." Write-Host "Starting installation..."
msiexec.exe /i "$AgentInstallPath" /q /lv "$(Join-Path -Path $PackagePath -ChildPath $AgentInstallFile).log" SERVERADDRESS="$ServerAddress" SERVERPASS="$ServerPass" LOCATION="$LocationId" msiexec.exe /i "$AgentInstallPath" /q /lv "$($AgentInstallPath).log" SERVERADDRESS="$ServerUrl" SERVERPASS="$ServerPass" LOCATION="$LocationId"
Write-Host "Log saved at $(Join-Path -Path $PackagePath -ChildPath $AgentInstallFile).log" Write-Host "Log saved at $($AgentInstallPath).log"

View File

@ -1,7 +1,12 @@
#!ps
#timeout=3000000
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls -bor [Net.SecurityProtocolType]::Tls11 -bor [Net.SecurityProtocolType]::Tls12
$PackagePath = 'C:\Packages' $PackagePath = 'C:\Packages'
$AgentUninstallFile = 'Agent_Uninstaller.zip' $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 $AgentUninstallPath = Join-Path -Path $PackagePath -ChildPath $AgentUninstallFile
If (!(Test-Path -PathType Container $PackagePath)) { If (!(Test-Path -PathType Container $PackagePath)) {
@ -9,7 +14,7 @@ If (!(Test-Path -PathType Container $PackagePath)) {
} }
Write-Host "Downloading Agent Uninstaller..." Write-Host "Downloading Agent Uninstaller..."
Invoke-WebRequest -Uri $AgentUninstallUri -OutFile $AgentUninstallPath (New-Object Net.WebClient).DownloadFile($AgentUninstallUrl, $AgentUninstallPath)
Write-Host "Expanding Agent Uninstaller..." Write-Host "Expanding Agent Uninstaller..."
Expand-Archive -Path $AgentUninstallPath -DestinationPath $PackagePath -Force Expand-Archive -Path $AgentUninstallPath -DestinationPath $PackagePath -Force
Write-Host "Invoking Agent Uninstaller..." Write-Host "Invoking Agent Uninstaller..."