vote up 0 vote down star

I need to know the application's ProductCode in the Installer.OnCommitted callback. There doesn't seem to be an obvious way of determining this.

flag

3 Answers

vote up 0 vote down

The MSI function MsiGetProperty can be used to get the name of the ProductCode property. I don't know if that would work in this case, since I've never created a .NET installer.

link|flag
vote up 1 vote down

I ended up passing the product code as a command line argument to my Installer class using the CustomActionData property in Visual Studio (e.g. /productcode={31E1145F-B833-47c6-8C80-A55F306B8A6C}. I can then access this from any callback within the Installer class using the Context.Parameters StringDictionary

string productCode = (string)Context.Parameters["productcode"];
link|flag
vote up 0 vote down

You can avoid hardcoding your product code, using /productCode=[ProductCode] in your CustomActionData property.

link|flag

Your Answer

Get an OpenID
or

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