I have installed some MSI with GUID (0733556C-37E8-4123-A801-D3E6C5151617). The program registered in the registry: HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ Uninstall \ ()

Value UninstallString = MsiExec.exe / I (0733556C-37E8-4123-A801-D3E6C5151617)

My question is: how utility MsiExec.exe knows the name and path to the file you want to run when you remove programs? Where in the registry this information can be found?

link|improve this question
feedback

3 Answers

Windows keeps Windows Installer configuration information hidden and encrypted in the Registry. It is not browseable with the human eye as other parts of the Registry are.

To query/modify/delete this information, you'll need to use MSI functions.
(Installer Function Reference)

For your particular question, try the function MsiGetProductInfo.

link|improve this answer
Hidden and encrypted - really? – Rup Aug 13 '10 at 17:44
feedback

You could try, from the command line:

wmic product where "Name like '%your software here%'" get Name, Version, PackageCode
link|improve this answer
Wow cool! but my cmq says it's an invalid query... – BlackBear May 9 '11 at 18:13
feedback

That key maps to HKEY_CLASSES_ROOT\Installer\Products\.

link|improve this answer
HKEY_CLASSES_ROOT\Installer\Products\ doesn't include path to installed program. Where ca I find it? – Yuriy Aug 13 '10 at 13:06
1  
It doesn't need the path to the app that was installed, what if it installed 10 applications?, all it needs is the path to the uninstaller (or .msi module). Take a look @ the output of "wmic product list" at the command line. – Alex K. Aug 13 '10 at 13:34
Actually I need to determine application location (disk drive) in order to estimate available disk space before installing msp patch. Can I determine location of installed application if I know only guid in HKEY_LOCAL_MACHINE \SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{<guid>}? – Yuriy Aug 13 '10 at 14:25
feedback

Your Answer

 
or
required, but never shown

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