Is it possible to find out the installed application list using c#?

  • Thread starter Thread starter B Deepak
  • Start date Start date
B

B Deepak

Hi,

Similar to Add/Remove functionality available in control panel to find out
the current installed application list, can we find out this list
programmatically or is there any batch command which does the needful?

Thanks,
Deepak
 
Hi,

Depends, you can get a list of app (the same you get from control panel|
add/remove ) by iterating in
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall

There is one subkey foreach installed app.

Take a look at that location

cheers,
 
Thanks Ignacio.
Ignacio Machin ( .NET/ C# MVP ) said:
Hi,

Depends, you can get a list of app (the same you get from control panel|
add/remove ) by iterating in
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall

There is one subkey foreach installed app.

Take a look at that location

cheers,
 
Back
Top