vote up 3 vote down star
1

In HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\ is the list of installed programs in my machine (at least most of them). There, there's a String Value called UninstallString which has what you need to run in order to uninstall the program.
The thing is not every installer writes the same kind of info, yet Windows knows how to parse that string to run the uninstaller.
My questions are: does anybody know how to parse that string?, meaning what are the possible values it might get? and if not, where can I find that kind of info? I googled around with no luck, I guess I'm not looking for the right terms.

flag

Taking a quick browse through my registry, these are all paths. Can you give examples that you have where the string isn't a path, or an executable in $PATH? – Matthew Scharley Oct 4 '08 at 15:02
I already uninstalled but Visual Studio 2003 had many paths... I believe that was the case I found – sebastian Oct 4 '08 at 15:21
Visual Studio 2008 seems to define UninstallPath and UninstallString, but they are identical, and there's only one path in each key, so there shouldn't be any issues there. Can't speak for 2003, I don't have a copy to test with. – Matthew Scharley Oct 4 '08 at 15:25

2 Answers

vote up 1 vote down check

Have a look at this link from MSDN explaining install/unistall procedures, specifically item #6 "Support Add/Remove Programs Properly".

As an excerpt from the table there:

   Key Name   |   Key Type    |                  Description
UninstallPath | REG_EXPAND_SZ | Full path to the application's uninstall program

Despite the fact it says 'full path', alot of applications seem to shorten it if the program is in $PATH, especially with things like msiexec.exe.

link|flag
I think the link you posted is broken... I can't reach the page – sebastian Oct 4 '08 at 15:20
I retried the link here, and it works for me. At any rate, the relevant information is quoted anyway. – Matthew Scharley Oct 4 '08 at 15:27
I was having problems accesing MSDN from Chrome... had to got to main page first and now I'm there – sebastian Oct 4 '08 at 17:55
vote up 0 vote down

I think it was VS2003 that had two paths separated by a comma, and that was new to me...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.