<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>dotNetInstaller: setup bootstrapper for Windows (MOVED TO GITHUB)</title><link>http://dotnetinstaller.codeplex.com/project/feeds/rss</link><description>Setup bootstrapper for Windows. You can use dotNetInstaller to create a setup bootstrapper to install the correct prerequisites software components for your application setup.</description><item><title>Commented Issue: Disable automatic switching of install sequence upon reboot [8503]</title><link>http://dotnetinstaller.codeplex.com/workitem/8503</link><description>If the bootstrapper rebooted the box, it shouldn&amp;#39;t switch sequence automatically to uninstall. This code is wrong&amp;#58;&lt;br /&gt;&lt;br /&gt;void InstallerUI&amp;#58;&amp;#58;LoadComponents&amp;#40;&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;&amp;#9;m_all &amp;#61; LoadComponentsList&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;&amp;#9;&amp;#47;&amp;#47; load xml file&lt;br /&gt;&amp;#9;InstallConfiguration &amp;#42; p_configuration &amp;#61; reinterpret_cast&amp;#60;InstallConfiguration &amp;#42;&amp;#62;&amp;#40;get&amp;#40;m_configuration&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;CHECK_BOOL&amp;#40;p_configuration &amp;#33;&amp;#61; NULL, L&amp;#34;Invalid configuration&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;&amp;#9;if &amp;#40;InstallerSession&amp;#58;&amp;#58;Instance-&amp;#62;sequence &amp;#61;&amp;#61; SequenceInstall &amp;#38;&amp;#38; m_all &amp;#38;&amp;#38; p_configuration-&amp;#62;supports_uninstall&amp;#41;&lt;br /&gt;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;LOG&amp;#40;&amp;#34;All components installed, switching to uninstall.&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;InstallerSession&amp;#58;&amp;#58;Instance-&amp;#62;sequence &amp;#61; SequenceUninstall&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;m_all &amp;#61; LoadComponentsList&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40;m_all&amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;LOG&amp;#40;&amp;#34;All components uninstalled, nothing to do.&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;InstallerSession&amp;#58;&amp;#58;Instance-&amp;#62;sequence &amp;#61; SequenceInstall&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#125;&lt;br /&gt;&lt;br /&gt;See http&amp;#58;&amp;#47;&amp;#47;dotnetinstaller.codeplex.com&amp;#47;discussions&amp;#47;249031&lt;br /&gt;Comments: &amp;#63;&amp;#63;</description><author>oferb00</author><pubDate>Wed, 08 May 2013 11:39:32 GMT</pubDate><guid isPermaLink="false">Commented Issue: Disable automatic switching of install sequence upon reboot [8503] 20130508113932A</guid></item><item><title>New Post: Avoid Uninstall</title><link>http://dotnetinstaller.codeplex.com/discussions/227908</link><description>&lt;div style="line-height: normal;"&gt;I have the same problem.&lt;br /&gt;
Any suggestion on how to workaround this until the new &amp;quot;feature&amp;quot; is implemented (which doesn't seem to happen)?&lt;br /&gt;
&lt;br /&gt;
Thx&lt;br /&gt;
&lt;/div&gt;</description><author>oferb00</author><pubDate>Wed, 08 May 2013 11:37:58 GMT</pubDate><guid isPermaLink="false">New Post: Avoid Uninstall 20130508113758A</guid></item><item><title>Commented Issue: Add an option to prevent automatic switching to uninstall sequence [7212]</title><link>http://dotnetinstaller.codeplex.com/workitem/7212</link><description>My setup package need reboots, but I noticed that after a reboot dotNetInstaller detects the installed components and uninstalls them with this message &amp;#34;All components installed, switching to uninstall.&amp;#34;&lt;br /&gt;&lt;br /&gt;The code says this&amp;#58;&lt;br /&gt;&lt;br /&gt;if &amp;#40;InstallerSession&amp;#58;&amp;#58;Instance-&amp;#62;sequence &amp;#61;&amp;#61; SequenceInstall &amp;#38;&amp;#38; m_all &amp;#38;&amp;#38; p_configuration-&amp;#62;supports_uninstall&amp;#41;&lt;br /&gt;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;LOG&amp;#40;&amp;#34;All components installed, switching to uninstall.&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;InstallerSession&amp;#58;&amp;#58;Instance-&amp;#62;sequence &amp;#61; SequenceUninstall&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;m_all &amp;#61; LoadComponentsList&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;if &amp;#40;m_all&amp;#41;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#123;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;LOG&amp;#40;&amp;#34;All components uninstalled, nothing to do.&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;InstallerSession&amp;#58;&amp;#58;Instance-&amp;#62;sequence &amp;#61; SequenceInstall&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#125;&lt;br /&gt;&amp;#9;&amp;#125;&lt;br /&gt;&lt;br /&gt;It needs to be driven by an option.&lt;br /&gt;Comments: I&amp;#39;m hitting the same problem.&amp;#10;Any solution or workaround&amp;#63;&amp;#63;&amp;#10;&amp;#10;Thx&amp;#33;&amp;#10;&amp;#10;</description><author>oferb00</author><pubDate>Wed, 08 May 2013 11:35:58 GMT</pubDate><guid isPermaLink="false">Commented Issue: Add an option to prevent automatic switching to uninstall sequence [7212] 20130508113558A</guid></item><item><title>Commented Issue: Dotnetinstaller: Customization of Installation failed messages [10450]</title><link>http://dotnetinstaller.codeplex.com/workitem/10450</link><description>Dear All,&lt;br /&gt;I have 2 msis as part of my 2.0 bootstrapper. Whenever the installation fails for whatever reason, I am gettting &amp;#34;Failed to install &amp;#34;component&amp;#34;&amp;#34;. &lt;br /&gt;I want to show the exact error message that msi is throwing instead of generalizing it with a common &amp;#34;Failed to install &amp;#37;s&amp;#34;.&lt;br /&gt;&lt;br /&gt;Thanks in Advance&lt;br /&gt;SDG&lt;br /&gt;Comments: DOTNETINSTALLER HAS MOVED TO GITHUB&amp;#10;&amp;#10;DOTNETINSTALLER HAS MOVED TO GITHUB&amp;#10;&amp;#10;DOTNETINSTALLER HAS MOVED TO GITHUB&amp;#10;&amp;#10;&amp;#10;DOTNETINSTALLER HAS MOVED TO GITHUB&amp;#10;&amp;#10;&amp;#10;DOTNETINSTALLER HAS MOVED TO GITHUB&amp;#10;&amp;#10;&amp;#10;&amp;#10;DOTNETINSTALLER HAS MOVED TO GITHUB&amp;#10;&amp;#10;&amp;#10;&amp;#10;&amp;#10;We&amp;#39;re going to give up the discussions here and move to http&amp;#58;&amp;#47;&amp;#47;groups.google.com&amp;#47;group&amp;#47;dotnetinstaller.&amp;#10;&amp;#10;Please subscribe to the new list and DON&amp;#39;T POST questions here.&amp;#10;DOTNETINSTALLER HAS MOVED TO GITHUB&amp;#10;&amp;#10;DOTNETINSTALLER HAS MOVED TO GITHUB&amp;#10;&amp;#10;&amp;#10;DOTNETINSTALLER HAS MOVED TO GITHUB</description><author>dblock</author><pubDate>Wed, 03 Apr 2013 16:25:21 GMT</pubDate><guid isPermaLink="false">Commented Issue: Dotnetinstaller: Customization of Installation failed messages [10450] 20130403042521P</guid></item><item><title>New Post: Dotnetinstaller: Customization of Installation failed messages</title><link>http://dotnetinstaller.codeplex.com/discussions/438972</link><description>&lt;div style="line-height: normal;"&gt;DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We're going to give up the discussions here and move to &lt;a href="http://groups.google.com/group/dotnetinstaller" rel="nofollow"&gt;http://groups.google.com/group/dotnetinstaller&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Please subscribe to the new list and DON'T POST questions here.&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;/div&gt;</description><author>dblock</author><pubDate>Wed, 03 Apr 2013 15:19:40 GMT</pubDate><guid isPermaLink="false">New Post: Dotnetinstaller: Customization of Installation failed messages 20130403031940P</guid></item><item><title>Created Issue: Dotnetinstaller: Customization of Installation failed messages [10450]</title><link>http://dotnetinstaller.codeplex.com/workitem/10450</link><description>Dear All,&lt;br /&gt;I have 2 msis as part of my 2.0 bootstrapper. Whenever the installation fails for whatever reason, I am gettting &amp;#34;Failed to install &amp;#34;component&amp;#34;&amp;#34;. &lt;br /&gt;I want to show the exact error message that msi is throwing instead of generalizing it with a common &amp;#34;Failed to install &amp;#37;s&amp;#34;.&lt;br /&gt;&lt;br /&gt;Thanks in Advance&lt;br /&gt;SDG&lt;br /&gt;</description><author>SDG</author><pubDate>Wed, 03 Apr 2013 15:10:01 GMT</pubDate><guid isPermaLink="false">Created Issue: Dotnetinstaller: Customization of Installation failed messages [10450] 20130403031001P</guid></item><item><title>New Post: Dotnetinstaller: Customization of Installation failed messages</title><link>http://dotnetinstaller.codeplex.com/discussions/438972</link><description>&lt;div style="line-height: normal;"&gt;Dear All,&lt;br /&gt;
I have 2 msis as part of my 2.0 bootstrapper. Whenever the installation fails for whatever reason, I am gettting &amp;quot;Failed to install &amp;quot;component&amp;quot;&amp;quot;. &lt;br /&gt;
I want to show the exact error message that msi is throwing instead of generalizing it with a common &amp;quot;Failed to install %s&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Thanks in Advance&lt;br /&gt;
SDG&lt;br /&gt;
&lt;/div&gt;</description><author>SDG</author><pubDate>Wed, 03 Apr 2013 15:09:23 GMT</pubDate><guid isPermaLink="false">New Post: Dotnetinstaller: Customization of Installation failed messages 20130403030923P</guid></item><item><title>New Post: how to stop bootstrapper from auto rebooting</title><link>http://dotnetinstaller.codeplex.com/discussions/433917</link><description>&lt;div style="line-height: normal;"&gt;DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We're going to give up the discussions here and move to &lt;a href="http://groups.google.com/group/dotnetinstaller" rel="nofollow"&gt;http://groups.google.com/group/dotnetinstaller&lt;/a&gt;.&lt;br /&gt;
&lt;br /&gt;
Please subscribe to the new list and DON'T POST questions here.&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;/div&gt;</description><author>dblock</author><pubDate>Fri, 22 Feb 2013 16:33:03 GMT</pubDate><guid isPermaLink="false">New Post: how to stop bootstrapper from auto rebooting 20130222043303P</guid></item><item><title>New Post: how to stop bootstrapper from auto rebooting</title><link>http://dotnetinstaller.codeplex.com/discussions/433917</link><description>&lt;div style="line-height: normal;"&gt;i am using dotinstaller  for making exe of two msi files, all reboot options are false butt reboot dialog appears for few moment and vanishsuddenly and rboot the system, after rebooting setup installation againg started , my auto restart property is also false. &lt;br /&gt;
 any body help me please to stop this dialog untill user press yes or no&lt;br /&gt;
&lt;/div&gt;</description><author>umarpucit</author><pubDate>Thu, 21 Feb 2013 07:49:03 GMT</pubDate><guid isPermaLink="false">New Post: how to stop bootstrapper from auto rebooting 20130221074903A</guid></item><item><title>New Post: How to do Major Upgrade through dotNetInstaller?</title><link>http://dotnetinstaller.codeplex.com/discussions/433067</link><description>&lt;div style="line-height: normal;"&gt;DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
We're going to give up the discussions here and move to &lt;a href="http://groups.google.com/group/dotnetinstaller.

Please" rel="nofollow"&gt;http://groups.google.com/group/dotnetinstaller.

Please&lt;/a&gt; subscribe to the new list and DON'T POST questions here.&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
DOTNETINSTALLER HAS MOVED TO GITHUB&lt;br /&gt;
&lt;/div&gt;</description><author>dblock</author><pubDate>Thu, 14 Feb 2013 13:54:00 GMT</pubDate><guid isPermaLink="false">New Post: How to do Major Upgrade through dotNetInstaller? 20130214015400P</guid></item><item><title>New Post: How to do Major Upgrade through dotNetInstaller?</title><link>http://dotnetinstaller.codeplex.com/discussions/433067</link><description>&lt;div style="line-height: normal;"&gt;i am new on dotnetinstaller kindly help me that how to do major upgrade of my already installed project through dotNetInstaller?&lt;br /&gt;
&lt;/div&gt;</description><author>umar034</author><pubDate>Thu, 14 Feb 2013 05:40:29 GMT</pubDate><guid isPermaLink="false">New Post: How to do Major Upgrade through dotNetInstaller? 20130214054029A</guid></item><item><title>Commented Issue: After uninstall of old version, the new installer appears in the back [10449]</title><link>http://dotnetinstaller.codeplex.com/workitem/10449</link><description>I have the following issue with a program i&amp;#39;m working on. When i&amp;#39;m making an upgrade from the previous version of the program to the current one, after the installer uninstalled the old version, the setup of the new version appeard behind the first form of the installer &amp;#40;the one with the system components&amp;#41;.&lt;br /&gt;I upgraded from 1.1 to 2.2 hoping that the new version will have the problem fixed, but the problem persist. Any ideea on what to do or when the issue will be fixed&amp;#63;&lt;br /&gt;Thank you&lt;br /&gt;cata&lt;br /&gt;Comments: This project has MOVED TO GITHUB. &amp;#10;&amp;#10;Please ask the mailing list before you create an issue.&amp;#10;&amp;#10;https&amp;#58;&amp;#47;&amp;#47;github.com&amp;#47;dblock&amp;#47;dotnetinstaller</description><author>dblock</author><pubDate>Tue, 28 Aug 2012 14:53:41 GMT</pubDate><guid isPermaLink="false">Commented Issue: After uninstall of old version, the new installer appears in the back [10449] 20120828025341P</guid></item><item><title>Created Issue: After uninstall of old version, the new installer appears in the back [10449]</title><link>http://dotnetinstaller.codeplex.com/workitem/10449</link><description>I have the following issue with a program i&amp;#39;m working on. When i&amp;#39;m making an upgrade from the previous version of the program to the current one, after the installer uninstalled the old version, the setup of the new version appeard behind the first form of the installer &amp;#40;the one with the system components&amp;#41;.&lt;br /&gt;I upgraded from 1.1 to 2.2 hoping that the new version will have the problem fixed, but the problem persist. Any ideea on what to do or when the issue will be fixed&amp;#63;&lt;br /&gt;Thank you&lt;br /&gt;cata&lt;br /&gt;</description><author>cata_1290</author><pubDate>Tue, 28 Aug 2012 14:22:11 GMT</pubDate><guid isPermaLink="false">Created Issue: After uninstall of old version, the new installer appears in the back [10449] 20120828022211P</guid></item><item><title>Commented Issue: UI Level: Basic is Automatically Rebooting Regardless [10446]</title><link>http://dotnetinstaller.codeplex.com/workitem/10446</link><description>I am using dotNetInstaller to install prerequisites for an MSI using WiX. It&amp;#39;s a great tool and it is doing exactly what I want it to do.&lt;br /&gt;&lt;br /&gt;The only problem is when I set it up at UI Level&amp;#58; Basic and one of the prerequisites sends a reboot signal &amp;#40;1641, 3010&amp;#41; which I have listed under the &amp;#34;returncodes_reboot&amp;#34; field&amp;#59; however when this code is received by the installer it shows the reboot message briefly &amp;#40;Warning the user the system needs a reboot&amp;#41; before it automatically reboots. This is obviously a problem as I would like to give the user a chance to close what they&amp;#39;re doing etc and save before it reboots.&lt;br /&gt;&lt;br /&gt;The installer log is attached.&lt;br /&gt;Comments: Please try the latest version and bring this up on the mailing list. This project has moved to https&amp;#58;&amp;#47;&amp;#47;github.com&amp;#47;dblock&amp;#47;dotnetinstaller</description><author>dblock</author><pubDate>Tue, 21 Aug 2012 20:55:49 GMT</pubDate><guid isPermaLink="false">Commented Issue: UI Level: Basic is Automatically Rebooting Regardless [10446] 20120821085549P</guid></item><item><title>Commented Issue: UI Level: Basic is Automatically Rebooting Regardless [10446]</title><link>http://dotnetinstaller.codeplex.com/workitem/10446</link><description>I am using dotNetInstaller to install prerequisites for an MSI using WiX. It&amp;#39;s a great tool and it is doing exactly what I want it to do.&lt;br /&gt;&lt;br /&gt;The only problem is when I set it up at UI Level&amp;#58; Basic and one of the prerequisites sends a reboot signal &amp;#40;1641, 3010&amp;#41; which I have listed under the &amp;#34;returncodes_reboot&amp;#34; field&amp;#59; however when this code is received by the installer it shows the reboot message briefly &amp;#40;Warning the user the system needs a reboot&amp;#41; before it automatically reboots. This is obviously a problem as I would like to give the user a chance to close what they&amp;#39;re doing etc and save before it reboots.&lt;br /&gt;&lt;br /&gt;The installer log is attached.&lt;br /&gt;Comments: We are seeing this issue as well. We have multiple prerequisites &amp;#40;.NET, VSTO, etc.&amp;#41; which require reboots. Not being able to suppress the reboot and have the app reboot just once, is a major problem for us.</description><author>SameeraCPX</author><pubDate>Sun, 19 Aug 2012 06:44:19 GMT</pubDate><guid isPermaLink="false">Commented Issue: UI Level: Basic is Automatically Rebooting Regardless [10446] 20120819064419A</guid></item><item><title>New Post: InstallCheck blocking subsequent msi components</title><link>http://dotnetinstaller.codeplex.com/discussions/346597</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;It seems I'm having the same issue with one of my products, where I first&amp;nbsp;require the installation of certain .NET packages, database drivers and hardware key drivers and then want to give the user three options of components from our house. Using dotnetinstaller
 1.06 and 1.10 it worked ok, but since upgrading to 2.0 (and tested with same result in 2.1) the items not being marked as &amp;quot;required&amp;quot; are considered ok even if they are not installed. (Refer to log lines marked in red below)&lt;/p&gt;
&lt;p&gt;Thus the state switches to uninstall. Alternatively, if none of the products is configured to support uninstall, the install state remains, but the messagebox just says &amp;quot;Product is already installed&amp;quot;, and effectively the user is never given the opportunity
 to select among my three options.&lt;/p&gt;
&lt;p&gt;--- Is this a bug or a misconfiguration from myself and the OP? ---&lt;/p&gt;
&lt;p&gt;The three options i want to offer are&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;optional: install main product
&lt;ol&gt;
&lt;li&gt;if product not already installed: fresh install using the msi component &lt;/li&gt;&lt;li&gt;if product of same base version is installed: execute the msi differently, to force upgrade of the product
&lt;/li&gt;&lt;/ol&gt;
&lt;/li&gt;&lt;li&gt;optional: install a related product, a separate msi, regardless if the main product is installed
&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;&amp;nbsp;Log excerpt:&lt;/p&gt;
&lt;p&gt;--&lt;/p&gt;
&lt;p&gt;2012-08-16 22:04:54&amp;nbsp;Checking whether registry value 'SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full\Install' exists&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;Registry value: 1&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;Check value: 1&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;-- Microsoft .NET Framework 4.0 (Microsoft .NET Framework 4.0): INSTALLED&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;Checking whether registry value 'SOFTWARE\Microsoft\Microsoft SQL Server Compact Edition\v3.5\Version' exists&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;Registry value: 3.5.8080.0&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;Checking whether registry value 'SOFTWARE\Microsoft\Microsoft SQL Server Compact Edition\v3.5\ServicePackLevel' exists&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;Registry value: 2&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;Check value: 2&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;-- SQL Server Compact 3.5 SP2 (SQL Server Compact 3.5 SP2): INSTALLED&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;Checking whether registry value 'SOFTWARE\RAINBOW TECHNOLOGIES\Sentinel System Driver\CurrentVersion' exists&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;Registry value: 7.5.1&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;-- Sentinel 7.4.0 (Sentinel 7.4.0): INSTALLED&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;Checking whether registry value 'SOFTWARE\Company\TheProduct\Version' exists&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;Registry value: 1.5.0&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;-- TheProduct Setup (TheProduct Setup): INSTALLED&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;Checking whether registry value 'SOFTWARE\Company\TheProduct\Version' exists&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;Registry value: 1.5.0&lt;br&gt;
&lt;span style="color:#ff0000"&gt;2012-08-16 22:04:54&amp;nbsp;-- TheProduct Upgrade (TheProduct Upgrade): NOT INSTALLED&lt;/span&gt;&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;Checking whether registry value 'SOFTWARE\Company\TheProduct\Version' exists&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;Registry value: 1.5.0&lt;br&gt;
&lt;span style="color:#ff0000"&gt;2012-08-16 22:04:54&amp;nbsp;-- TheProduct Local Setup (TheProduct Local Setup): NOT INSTALLED&lt;/span&gt;&lt;br&gt;
2012-08-16 22:04:54&amp;nbsp;All components installed, switching to uninstall.&lt;/p&gt;
&lt;p&gt;--&lt;/p&gt;
&lt;/div&gt;</description><author>samuel_su</author><pubDate>Thu, 16 Aug 2012 20:50:29 GMT</pubDate><guid isPermaLink="false">New Post: InstallCheck blocking subsequent msi components 20120816085029P</guid></item><item><title>New Post: Error on Win XP non-admin user</title><link>http://dotnetinstaller.codeplex.com/discussions/343238</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I created a new issue here: &lt;a href="https://github.com/dblock/dotnetinstaller/issues/21"&gt;https://github.com/dblock/dotnetinstaller/issues/21&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;These discussions are closed, so please post any follow ups on github.&lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;&lt;/div&gt;</description><author>icnocop</author><pubDate>Thu, 26 Jul 2012 20:14:01 GMT</pubDate><guid isPermaLink="false">New Post: Error on Win XP non-admin user 20120726081401P</guid></item><item><title>New Post: Error on Win XP non-admin user</title><link>http://dotnetinstaller.codeplex.com/discussions/343238</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Unfortunately, no, setup still crushes. (used dotnetinstaller 2.1.528, i assume that this fix was in that build)&lt;/p&gt;&lt;/div&gt;</description><author>tinamou</author><pubDate>Wed, 25 Jul 2012 12:37:47 GMT</pubDate><guid isPermaLink="false">New Post: Error on Win XP non-admin user 20120725123747P</guid></item><item><title>Commented Issue: htmlInstaller does not populate user-defined edit values [10447]</title><link>http://dotnetinstaller.codeplex.com/workitem/10447</link><description>When using an &amp;#60;input type&amp;#61;&amp;#34;text&amp;#34;&amp;#62; element in an HTML page, htmlInstaller does not populate values so they can be used by components.&lt;br /&gt;&lt;br /&gt;The sample configuration.xml has an element &amp;#60;input type&amp;#61;&amp;#34;text&amp;#34; id&amp;#61;&amp;#34;TestValueFromHtml&amp;#34; &amp;#47;&amp;#62;, but any value put in this box is not visible to components &amp;#40;the log says&amp;#58; &amp;#34;Setting user-defined edit value &amp;#39;TestValueFromHtml&amp;#39;&amp;#61;&amp;#34;&amp;#41;&lt;br /&gt;&lt;br /&gt;Tested with version 2.0.81.0.&lt;br /&gt;Attachments include the configuration.xml, the log file, and the Index.html in use.&lt;br /&gt;Comments: &amp;#40; created GitHub issue&amp;#58; https&amp;#58;&amp;#47;&amp;#47;github.com&amp;#47;dblock&amp;#47;dotnetinstaller&amp;#47;pull&amp;#47;14 &amp;#41;</description><author>jennings</author><pubDate>Tue, 19 Jun 2012 00:10:22 GMT</pubDate><guid isPermaLink="false">Commented Issue: htmlInstaller does not populate user-defined edit values [10447] 20120619121022A</guid></item><item><title>New Post: attaching exe files to be installed</title><link>http://dotnetinstaller.codeplex.com/discussions/357994</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;These discussions are closed, please ask the new Google Group.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://groups.google.com/forum/?fromgroups#!forum/dotnetinstaller"&gt;https://groups.google.com/forum/?fromgroups#!forum/dotnetinstaller&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><author>dblock</author><pubDate>Fri, 01 Jun 2012 14:22:41 GMT</pubDate><guid isPermaLink="false">New Post: attaching exe files to be installed 20120601022241P</guid></item></channel></rss>