Use systeminfo to find out installed Windows Hotfix(s) or updates
Helping out a friend to troubleshoot his virtual Windows servers. One machine is for production use, running a Java application for his company internal users and another machine is for development server, which mirrors the production server but use for development work.
Putting this handy systeminfo
command down here for future reference. Pretty quick and useful way to list out the installed Windows updates on one server and can use the list to compare the installed Windows updates on another server.
An example screen shot of systeminfo program output on command box.
Since we are only interested to find out the installed Windows hotfixes and updates on command prompt. Simply run :
>systeminfo | find "KB"
systeminfo
program will dump out a list of System Information and pipe the output to find
program to filter out the strings that does not contain 'KB'
Run the same command on another server to get the list and then you can compare the lists to see if there is any discrepancies.
Hope this tutorial can be useful to you!
See also : Findstr command the Grep equivalent for Windows
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+4.7k Fix Google Analytics Redundant Hostnames problem
+11.3k Golang : Delay or limit HTTP requests example
+30.7k error: trying to remove "yum", which is protected
+13.3k Android Studio : Password input and reveal password example
+11.2k Golang : Byte format example
+17.5k Golang : Parse date string and convert to dd-mm-yyyy format
+14.7k Golang : Submit web forms without browser by http.PostForm example
+7.6k Golang : get the current working directory of a running program
+19.1k Mac OSX : Homebrew and Golang
+5.7k Unix/Linux : How to test user agents blocked successfully ?
+39.9k Golang : UDP client server read write example
+5.1k JavaScript/JQuery : Redirect page examples