How do you find out the ProductCode from a .Net Installer class custom action - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T03:25:04Zhttp://stackoverflow.com/feeds/question/61052http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/61052/how-do-you-find-out-the-productcode-from-a-net-installer-class-custom-action0How do you find out the ProductCode from a .Net Installer class custom actionMark Gladding2008-09-14T01:53:28Z2009-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#610690Answer by Chris Tybur for How do you find out the ProductCode from a .Net Installer class custom actionChris Tybur2008-09-14T02:24:02Z2008-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#612981Answer by Mark Gladding for How do you find out the ProductCode from a .Net Installer class custom actionMark Gladding2008-09-14T12:18:39Z2008-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#12137390Answer by Bulkman for How do you find out the ProductCode from a .Net Installer class custom actionBulkman2009-07-31T17:08:52Z2009-07-31T17:08:52Z<p>You can avoid hardcoding your product code, using /productCode=[ProductCode] in your CustomActionData property.</p>