Files
management-scripts/Install-ESETManagementAgent.ps1
T
2022-09-02 15:16:37 -04:00

17 lines
694 B
PowerShell

# NOTE: $URL must be set in calling script!
# Download the installer
$INSTALLER = '{0}epi_win_live_installer.exe' -f (GetTempPath)
LogMsg "Downloading ESET Management Agent live installer"
Try { Invoke-WebRequest -Uri $URL -UseBasicParsing -OutFile $INSTALLER }
Catch { LogErr $_.Exception.Message }
# Install the app
LogMsg "Installing ESET Management Agent from ""${INSTALLER}"""
Try { Start-Process "${INSTALLER}" -ArgumentList "--silent --accepteula" -Wait }
Catch { LogErr $_.Exception.Message }
# Delete the installer
LogMsg "Deleting downloaded installer ""${INSTALLER}"""
Try { Remove-Item -Path $INSTALLER -Force -ErrorAction SilentlyContinue }
Catch { LogErr $_.Exception.Message }