32 lines
1.0 KiB
PowerShell
32 lines
1.0 KiB
PowerShell
#!ps
|
|
#timeout=3000000
|
|
|
|
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls -bor [Net.SecurityProtocolType]::Tls11 -bor [Net.SecurityProtocolType]::Tls12
|
|
|
|
$PackagesPath = 'C:\Packages'
|
|
|
|
$AgentInstallUrl = ''
|
|
$AgentInstallFile = "$(($AgentInstallUrl -split '/')[6]).msi"
|
|
$AgentInstallPath = Join-Path -Path $PackagesPath -ChildPath $AgentInstallFile
|
|
|
|
# Prep
|
|
|
|
# Create the $PackagesPath directory if it doesn't already exist
|
|
if (-not (Test-Path -PathType Container $PackagesPath)) { New-Item -ItemType Directory -Path $PackagesPath | Out-Null }
|
|
|
|
# Download
|
|
|
|
Write-Host "Downloading agent installer..."
|
|
# Use Legacy WebClient for compatibility
|
|
(New-Object Net.WebClient).DownloadFile($AgentInstallUrl, $AgentInstallPath)
|
|
|
|
# Install
|
|
|
|
Write-Host "Starting installation..."
|
|
Start-Process msiexec -ArgumentList "/i `"$AgentInstallPath`" /q /lv `"$($AgentInstallPath).log`"" -Wait
|
|
Write-Host "Log saved at $($AgentInstallPath).log"
|
|
|
|
# Clean up
|
|
|
|
Write-Host "Removing package download from '$ArchivePath'"
|
|
Remove-Item -Path $AgentInstallPath -Force |