How do you find out the ProductCode from a .Net Installer class custom action - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T03:25:04Z http://stackoverflow.com/feeds/question/61052 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/61052/how-do-you-find-out-the-productcode-from-a-net-installer-class-custom-action 0 How do you find out the ProductCode from a .Net Installer class custom action Mark Gladding 2008-09-14T01:53:28Z 2009-07-31T17:08:52Z <p>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.</p> http://stackoverflow.com/questions/61052/how-do-you-find-out-the-productcode-from-a-net-installer-class-custom-action/61069#61069 0 Answer by Chris Tybur for How do you find out the ProductCode from a .Net Installer class custom action Chris Tybur 2008-09-14T02:24:02Z 2008-09-14T02:24:02Z <p>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.</p> http://stackoverflow.com/questions/61052/how-do-you-find-out-the-productcode-from-a-net-installer-class-custom-action/61298#61298 1 Answer by Mark Gladding for How do you find out the ProductCode from a .Net Installer class custom action Mark Gladding 2008-09-14T12:18:39Z 2008-09-14T12:18:39Z <p>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</p> <pre><code>string productCode = (string)Context.Parameters["productcode"]; </code></pre> http://stackoverflow.com/questions/61052/how-do-you-find-out-the-productcode-from-a-net-installer-class-custom-action/1213739#1213739 0 Answer by Bulkman for How do you find out the ProductCode from a .Net Installer class custom action Bulkman 2009-07-31T17:08:52Z 2009-07-31T17:08:52Z <p>You can avoid hardcoding your product code, using /productCode=[ProductCode] in your CustomActionData property.</p>