cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
pkumar37
Level 3

Find Installed Location of application If you know GUID

Jump to solution

Is it possible to find the installed location of Application If I know my MSI installed GUID.
e.g. My application gets installed "C:\\Program (x86)\Company\Product "  and I know my MSI GUID is it possible to get this location using installscript.

Labels (1)
0 Kudos
(1) Solution
Thananjeyan_M
Level 6

Kindly get "InstallLocation" key from below registry path.  

HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{GUID}

Note: Some installers may not have this value.

Thanks, 

Thananjeyan

View solution in original post

(2) Replies
Thananjeyan_M
Level 6

Kindly get "InstallLocation" key from below registry path.  

HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\{GUID}

Note: Some installers may not have this value.

Thanks, 

Thananjeyan

I used this MSI function which gives me install allocation MsiGetProductInfo(). 

0 Kudos