0

My task is to list all the software programs that are installed in my desktop.

will i use the win32_product for displaying this list.

will the following query works for this...?

select * from win32_product;
Gomathipriya
  • 905
  • 7
  • 19
  • 38

1 Answers1

1

The Win32_Product WMI class only list the software installed by the Windows Installer. AFAIK there is not another WMI class to list all the installed software, So you best option is use the Uninstall Registry Key

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall
RRUZ
  • 134,889
  • 20
  • 356
  • 483