vote up 3 vote down star

The MSI stores the installation directory for the future uninstall tasks.

Using the INSTALLPROPERTY_INSTALLLOCATION property (that is "InstallLocation") works only the installer has set the ARPINSTALLLOCATION property during the installation. But this property is optional and almost nobody uses it.

How could I retrieve the installation directory?

flag

79% accept rate

4 Answers

vote up 2 vote down check

Use a registry key to keep track of your install directory, that way you can reference it when upgrading and removing the product.

Using WIX I would create a Component that creates the key, right after the Directy tag of the install directory, declaration

link|flag
I haven't done it, so I still need to know how get the directory... – Michael Damatov Nov 1 '08 at 18:44
What are you using to create the MSI file with, every language would have it's specifications to get that information – CheGueVerra Nov 1 '08 at 18:46
I've made it with InstallShield 11.5 (I know it's outdated...). BasicMSI project. – Michael Damatov Nov 1 '08 at 18:48
vote up 0 vote down

I would try to use Installer.OpenProduct(productcode). This opens a session, on which you can then ask for Property("TARGETDIR").

link|flag
Already tried: doesn't work – Michael Damatov Nov 1 '08 at 18:53
vote up 0 vote down

Try this: var sPath = this.Context.Parameters["assemblypath"].ToString();

link|flag
vote up 0 vote down

I'd use MsiGetComponentPath() - you need the ProductId and a ComponentId, but you get the full path to the installed file - just pick one that goes to the location of your installation directory. If you want to get the value of a directory for any random MSI, I do not believe there is an API that lets you do that.

link|flag

Your Answer

Get an OpenID
or

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