10-11-2010 02:13 AM
Hi,
I like to check whether the application is installed in the PC. I have the exe name. Is it possible to check it?
I tried "LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall" which does not list. But in control panel it is listing.
Can you please help to find the installed location?
Thanks in advance,
Suresh Kumar.G
10-11-2010 02:36 AM
10-11-2010 10:02 AM
That's actually the right location, but it won't be listed by name. It will be one of the branches with the GUID as the branch name. I.e., one of the ones with those long hex numbers. Thus, you have to check each branch and then look at the "DisplayName" key to see if it matches the name of your executable.
10-11-2010 10:49 AM
Thanks a lot
10-11-2010 10:50 AM
Sure. I will try this.