17 lines
694 B
PowerShell
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 } |