Command line to get installed software / windows updates information
One can use wmic command to get the list of product installed in Windows:
c:\> wmic product
You can also specify which data fields you want to retrieve, e.g.:
c:\> wmic product get caption
We can also use wmic command to get the list of windows updates made on the machine:
c:\> wmic qfe list
c:\> wmic product
You can also specify which data fields you want to retrieve, e.g.:
c:\> wmic product get caption
We can also use wmic command to get the list of windows updates made on the machine:
c:\> wmic qfe list
Comments
Post a Comment