How to prevent Windows (Mobile) installer from overwriting registry key values - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T14:44:09Zhttp://stackoverflow.com/feeds/question/865646http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/865646/how-to-prevent-windows-mobile-installer-from-overwriting-registry-key-values0How to prevent Windows (Mobile) installer from overwriting registry key valuesTommi Forsström2009-05-14T20:43:15Z2009-11-02T13:47:32Z
<p>Hi!</p>
<p>I'm wrapping up a Windows Mobile (6.1) app I've written and everything goes fine and dandy, but I've got one nasty problem: My app needs a few registry keys for settings and I can create them in the installer (using the registry editor) fine, but my problem is that every time I run the installer to update a new version of the software it overwrites those registry values.</p>
<p>Is it possible to create a .cab installer that creates the specified registry keys if they don't exist, but leaves them alone if they do.</p>
<p>Also, am I correct if I assume the setup project automatically deletes all registry keys in uninstall that it created during install?</p>
<p>Thanks a bunch in advance!</p>
http://stackoverflow.com/questions/865646/how-to-prevent-windows-mobile-installer-from-overwriting-registry-key-values/866016#8660162Answer by Shane Powell for How to prevent Windows (Mobile) installer from overwriting registry key valuesShane Powell2009-05-14T21:49:13Z2009-05-14T21:49:13Z<p>I don't beleave you have that much control over regsitry setup in the installer INF.</p>
<p>What you need to do is create a <a href="http://msdn.microsoft.com/en-us/library/aa924308.aspx" rel="nofollow">setup dll</a> which will give you all the control that you need to do whatever you want. The problem is that you have to write it in C or C++ but it should be easy enough as all you want to do is to setup registry keys.</p>
http://stackoverflow.com/questions/865646/how-to-prevent-windows-mobile-installer-from-overwriting-registry-key-values/1661390#16613900Answer by GrabIt for How to prevent Windows (Mobile) installer from overwriting registry key valuesGrabIt2009-11-02T13:38:39Z2009-11-02T13:38:39Z<p>yes exactly look at this <a href="http://windowsteamblog.com/blogs/windowsphone/archive/2009/08/11/using-custom-icons-in-windows-mobile-6-5.aspx" rel="nofollow">link</a></p>
<p>look dynamic creation of .cab</p>
http://stackoverflow.com/questions/865646/how-to-prevent-windows-mobile-installer-from-overwriting-registry-key-values/1661425#16614250Answer by ctacke for How to prevent Windows (Mobile) installer from overwriting registry key valuesctacke2009-11-02T13:47:32Z2009-11-02T13:47:32Z<p>No custom DLL is necessary. Use the <a href="http://msdn.microsoft.com/en-us/library/ms938375.aspx" rel="nofollow">FLG_ADDREG_NOCLOBBER (0x00000002) in the INF entry</a> for your reg key.</p>