powershell-scripts/rmm/automate/Install-Automate.ps1

18 lines
744 B
PowerShell

$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
If (!(Test-Path -PathType Container $PackagePath)) {
New-Item -ItemType Directory -Path $PackagePath
}
Write-Host "Downloading Agent Installer..."
Invoke-WebRequest -Uri $AgentInstallUrl -OutFile $AgentInstallerPath
Write-Host "Starting installation..."
msiexec.exe /i "$AgentInstallPath" /q /lv "$(Join-Path -Path $PackagePath -ChildPath $AgentInstallerName).log" SERVERADDRESS="$ServerAddress" SERVERPASS="$ServerPass" LOCATION="$LocationId"