up vote 1 down vote favorite
share [g+] share [fb]

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.

link|improve this question
feedback

3 Answers

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|improve this answer
No need to cast to a string, as it's alreay a string – Cocowalla Apr 17 '10 at 19:01
feedback

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

link|improve this answer
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown