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
+7.1k Golang : Gargish-English language translator
+13.6k Facebook PHP getUser() returns 0
+17k Golang : Get the IPv4 and IPv6 addresses for a specific network interface
+20.3k Golang : Count number of digits from given integer value
+5.6k PHP : Fix Call to undefined function curl_init() error
+4.9k Javascript : How to get width and height of a div?
+10.8k Golang : Underscore string example
+8.7k Golang : Another camera capture GUI application with GTK and OpenCV
+6.4k Javascript : Generate random key with specific length
+12.5k Golang : Extract part of string with regular expression
+9.6k Golang : Validate IPv6 example
+18.9k Golang : How to make function callback or pass value from function as parameter?