Ho can I obtain/export the Windows Control Panel Add/Remove programs list using WMI or VB script?
Asked
Active
Viewed 3,547 times
1 Answers
3
wmic product
on the local machine. You can also use wmic /NODE:computername get product
on remote machines. It will take a while.

Nathan C
- 15,059
- 4
- 43
- 62
-
Thank you. But it didn't return the list from Control's Panel Add/Remove. It returns some installed programs, probably, the ones installed using windows installer. – msmafra Jun 20 '13 at 19:55
-
It is going to be helpful anyway – msmafra Jun 24 '13 at 19:54