0

Ho can I obtain/export the Windows Control Panel Add/Remove programs list using WMI or VB script?

msmafra
  • 173
  • 3
  • 9

1 Answers1

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
  • 14,901
  • 4
  • 42
  • 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