Link to home
Create AccountLog in
Avatar of String :-)
String :-)Flag for Australia

asked on

Powershell - How to install a single Edge MS Update using Powershell

Hi all,

I have been tasked to install the following update across our fleet of 1000+ Windows servers. The update is downloaded from WSUS and sitting in Pending updates on each server. 


Microsoft Edge-Stable Channel Version 117 Update for x64 based Editions (Build 117.0.2045.31)","","",,"True","https://go.microsoft.com/fwlink/?linkid=2115239"


 

I usually use PSWindowsUpdate module to install indiviual updates, however this one does not have a KB listed: 



Import-Module -Name PSWindowsUpdate

Get-WindowsUpdate | fl


Result (see the KB field is blank):


Status                          : -D-----

ComputerName                    : XXXX

KB                              :

Title                           : Microsoft Edge-Stable Channel Version 117 Update for x64 based Editions (Build 117.0.2045.31)


Seeking ideas from experts on how else I can install this update using Powershell.


PS - We dont have SCCM or any PSA tools available to us at this time, our only tool is Powershell or CMD. 

Thanks for any tips.

Cheers




Avatar of String :-)
String :-)
Flag of Australia image

ASKER

PS - I should mention.. There are other updates in the pending state on each server, however I am required to only install the Edge update at this time
ASKER CERTIFIED SOLUTION
Avatar of Michael Pfister
Michael Pfister
Flag of Germany image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Excellent suggestion, thank you Michael.