PowerShell Tutorials

How to Automate Microsoft Edge Updates with PowerShell

Learn how to automate Microsoft Edge updates using a simple PowerShell script, ensuring your systems stay secure and up-to-date effortlessly. Microsoft Edge, like many other applications, frequently receives updates that improve performance, add new features, and address security vulnerabilities. However, manually checking for updates can be time-consuming, especially in a business environment where automation is key.

PowerShell-7

Automating Microsoft Edge Updates

The script below allows you to automate the process of installing updates for Microsoft Edge. It works by executing the Microsoft Edge Update executable with specific arguments to silently check for and install updates.

$EdgeUpdatePath = "C:\Program Files (x86)\Microsoft\EdgeUpdate\MicrosoftEdgeUpdate.exe"
$ArgumentList = "/silent /install appguid={56EB18F8-B008-4CBD-B6D2-8C97FE7E9062}&appname=Microsoft%20Edge&needsadmin=True"

$Process = Start-Process -FilePath $EdgeUpdatePath -ArgumentList $ArgumentList -PassThru -Wait

if ($Process.ExitCode -eq 0) {
    Write-Host "Update successfully installed."
} else {
    Write-Host "Update failed to install."
}

Why Automate Edge Updates?

Automating updates is especially useful for IT administrators managing multiple machines. It ensures that all systems are consistently updated without manual intervention, reducing the risk of missed updates and potential security vulnerabilities.

Running the Script

To use this script, open PowerShell with administrative privileges and paste the script into the console. The script will run the update process in the background, and you’ll see a message indicating whether the update was successful or failed.

Conclusion

By leveraging PowerShell to automate Microsoft Edge updates, you can streamline the update process across your organization. The script provides a simple, reliable method to ensure your systems are always running the latest version of Microsoft Edge.


Discover more from Patrick Domingues

Subscribe to get the latest posts sent to your email.

author avatar
Patrick Domingues

Leave a Comment

Stay Informed

Receive instant notifications when new content is released.