| Posted: 24-June-2010 at 15:01 | IP Logged
|
|
|
To get a list of isntalled software on a computer, use WMIC (WMI Command line interface) as follows:
wmic product
I normally use the option bellow to pipe output in a file that I can load in Excel...
wmic product list /format:csv > c:\temp.txt
|