Link to home
Start Free TrialLog in
Avatar of amaru96
amaru96

asked on

Get list of installed windows updates from remote machine using VB.NET

Hi guys, is there a way to get a list of installed Windows updates on a remote machine?

The below powershell code does the trick but don't know if there's a way to do this within VB?

get-wmiobject -class win32_quickfixengineering -computername Machine1

The result of the above command looks like this:

User generated image
How do I get this result from VB?

One other thing, from that result, how do I get it to display the most recent date of the updates installed?
ASKER CERTIFIED SOLUTION
Avatar of Kamal Khaleefa
Kamal Khaleefa
Flag of Kuwait image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of amaru96
amaru96

ASKER

Thanks, that's a pretty good tool!