360™: Everbridge 360™ MSI Auto-Update

While the Everbridge 360™ MSI has no built in functionality to automatically update to the latest version, this can still be done using a combination of Window Tasks and PowerShell.

 

Step 1

Download the attached Everbridge360.AutoUpdate.ps1  file. This will need to be added to each machine you want to automatically update.

Step 2

Run the following PowerShell script (Or setup your own task)

This task is created to run once per day after the user logs in. It will check for any updates and if one is available, download and install it.

This task assumes the file from step 1 has been saved to C:\Program Files\Everbridge 360\Everbridge360.AutoUpdate.ps1

$action = New-ScheduledTaskAction -Execute 'powershell.exe' -Argument '-File "C:\Program Files\Everbridge 360\Everbridge360.AutoUpdate.ps1"'
$trigger = New-ScheduledTaskTrigger -AtLogon
$principal = New-ScheduledTaskPrincipal -UserId "SYSTEM" -LogonType ServiceAccount -RunLevel Highest
$settings = New-ScheduledTaskSettingsSet -StartWhenAvailable

Register-ScheduledTask -TaskName "Everbridge360AutoUpdate" -Action $action -Trigger $trigger -Principal $principal -Settings $settings
Attachments
Was this article helpful?
0 out of 0 found this helpful

Article Feedback


While we can’t respond to you directly, we’d love to know how we can improve the article.

Article is closed for comments.