<?xml version='1.0' encoding="utf-8"?>
      <rss version='2.0'>
      <channel>
      <title>Форум на Исходниках.RU</title>
      <link>https://forum.sources.ru</link>
      <description>Форум на Исходниках.RU</description>
      <generator>Форум на Исходниках.RU</generator>
  	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3521116</guid>
        <pubDate>Wed, 03 Sep 2014 12:35:52 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3521116</link>
        <description><![CDATA[Fester: Посмотрел на гитхабе описание Microsoft.Deployment.WindowsInstaller<br>
<br>
Должно быть что-то вроде:<br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">public class CustomActions</div><div class="code_line">{</div><div class="code_line">&nbsp;&nbsp; &nbsp; [CustomAction]</div><div class="code_line">&nbsp;&nbsp; &nbsp; public static ActionResult SetComponentState(Session session)</div><div class="code_line">&nbsp;&nbsp; &nbsp; {</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; session.Log(&quot;Begin CustomAction1&quot;);</div><div class="code_line">&nbsp;</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; try</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; {</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;Session.Components[&quot;SchedulerService.exe.config&quot;].RequestState = InstallState.Local</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; }</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; catch (Exception ex)</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; {</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;session.Log (ex.Message);</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;return ActionResult.Failure;</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; }</div><div class="code_line">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; return ActionResult.Success;</div><div class="code_line">&nbsp;&nbsp; &nbsp; }</div><div class="code_line">}</div></ol></div></div></div></div><script>preloadCodeButtons('1');</script>]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3521083</guid>
        <pubDate>Wed, 03 Sep 2014 11:26:05 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3521083</link>
        <description><![CDATA[Tatyana Druzenko: Я все-таки хочу написать CustomAction на C#, пытаюсь переделать код метода, который Вы мне написали, но не срабатывает пока :(<br>
<br>
Я объявила переменную uint INSTALLSTATE_LOCAL = 3;<br>
<br>
А вот с методом MsiSetComponentState (или Вы еще предлагали InstallMissingComponent) - беда. Таких методов не нашлось, может там какие-то библиотеки? <br>
Уже весь интернет перерыла :( <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-09-03T11:28:14+00:00">03.09.14, 11:28</time></span></span><br>
Пока что вот так написано.<br>
<br>
uint INSTALLSTATE_LOCAL = 3;  <br>
<br>
private uint SetComponentState(Session hInstaller)<br>
        {<br>
            return InstallMissingComponent(hInstaller, &quot;SchedulerService.exe.config&quot;, INSTALLSTATE_LOCAL);<br>
        }]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520677</guid>
        <pubDate>Tue, 02 Sep 2014 13:33:35 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520677</link>
        <description><![CDATA[Fester: это Session.]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520653</guid>
        <pubDate>Tue, 02 Sep 2014 12:57:07 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520653</link>
        <description><![CDATA[Tatyana Druzenko: Пока что дело даже не в функции, компилятор выдает вот какую ошибку : <br><br>Error	1	The type or namespace name &#39;MSIHANDLE&#39; could not be found (are you missing a using directive or an assembly reference?)	C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.ShedulerService.CustomAction&#092;CustomAction.cs	25	40	OpenSoft.InkRouter.ShedulerService.CustomAction<br><br><br>То есть он не находит именно &#39;MSIHANDLE&#39;.<br>В интернете не нашла ничего, что помогло бы понять к чему эта ошибка относится  :wall:]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520637</guid>
        <pubDate>Tue, 02 Sep 2014 12:37:24 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520637</link>
        <description><![CDATA[Fester: Не уверен, но предположу, что в этой библиотеке эта функция называется InstallMissingComponent.]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520614</guid>
        <pubDate>Tue, 02 Sep 2014 11:56:17 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520614</link>
        <description><![CDATA[Tatyana Druzenko: Эта библиотека подключена у меня, но компилятор все равно говорит, что не находит эти имена. Получается мне нужно удалять этот CustomAction и делать новый на C++? Аналога на c# нет? :(]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520609</guid>
        <pubDate>Tue, 02 Sep 2014 11:48:49 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520609</link>
        <description><![CDATA[Fester: Это на С++.<br><br>В принципе есть Microsoft.Deployment.WindowsInstaller, но это не &quot;родная&quot; библиотека, а какие-либо зависимости крайне нежелательны.]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520578</guid>
        <pubDate>Tue, 02 Sep 2014 10:23:23 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520578</link>
        <description><![CDATA[Tatyana Druzenko: К сожалению у меня подчеркивается и MSIHANDLE, и MsiSetComponentState (hInstall, и INSTALLSTATE_LOCAL.<br>А в интернете я не могу найти, какой using надо написать. Можете подсказать?]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520518</guid>
        <pubDate>Tue, 02 Sep 2014 08:13:54 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520518</link>
        <description><![CDATA[Fester: Ну просто показалось, что нет ;)<br>
<br>
File.Create(&quot;SchedulerService.exe.config&quot;); - просто создает файл, тебе это не надо.<br>
Тебе надо вызвать функцию MsiSetComponentState и установить iState в INSTALLSTATE_LOCAL.<br>
<br>
вот кастом экшен, который, по идее :), всегда устанавливает компоненту &quot;SchedulerService.exe.config&quot;.<br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">extern &quot;C&quot; __declspec(dllexport) UINT &nbsp;SetComponentState (MSIHANDLE hInstaller)</div><div class="code_line">{</div><div class="code_line">&nbsp;&nbsp; &nbsp;return MsiSetComponentState (hInstall, _T(&quot;SchedulerService.exe.config&quot;), INSTALLSTATE_LOCAL);</div><div class="code_line">}</div></ol></div></div></div></div><br>
   <br>
тебе надо получить значения интересующих тебя пропертей и в зависимости от них требовать установки компоненты (ну или нет :)).<br>
Для начала попробуй, работает ли это в принципе, потом уже можно будет финтить с условиями.]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520503</guid>
        <pubDate>Tue, 02 Sep 2014 07:49:53 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520503</link>
        <description><![CDATA[Tatyana Druzenko: Конечно, а что не так?]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520496</guid>
        <pubDate>Tue, 02 Sep 2014 07:39:19 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520496</link>
        <description><![CDATA[Fester: <strong class='tag-b'>Tatyana Druzenko</strong>, ты когда-нибудь программировала? :)]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520170</guid>
        <pubDate>Mon, 01 Sep 2014 11:16:56 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3520170</link>
        <description><![CDATA[Tatyana Druzenko: Я прошла по ссылке, которую Вы мне дали, нотам нет ни одного примера :( Никак не разберусь, куда мне писать все эти INSTALLSTATE_*  ...<br>
<br>
if (INSTALLSTATE_ABSENT)<br>
            {<br>
                File.Create(&quot;SchedulerService.exe.config&quot;);<br>
                <br>
            }<br>
else { }<br>
<br>
Так подчеркивает - нет такого свойства :( и все так же непонятно, что писать в фигурных скобках. То есть как на C# запустить действие - установку нужного файла, я вот нашла  File.Create(&quot;SchedulerService.exe.config&quot;), но что-то мне подсказывает, что это не установка данного файла. <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-09-01T12:00:54+00:00">01.09.14, 12:00</time></span></span><br>
И еще Вы мне посоветовали эту статью, но я не пойму, разве мне это нужно писать?<br>
<br>
&lt;Property Id=&quot;PRODUCTINSTALLFOLDER&quot;&gt;<br>
    &lt;RegistrySearch Id=&#39;ProductInstallDir&#39; <br>
                    Type=&#39;raw&#39; <br>
                    Root=&#39;HKLM&#39; <br>
                    Key=&#39;SOFTWARE&#092;Manufacturer&#092;ExistingProduct&#092;Setup&#39; <br>
                    Name=&#39;MsiInstallPath&#39; <br>
                    Win64=&#39;yes&#39;/&gt;<br>
&lt;/Property&gt;<br>
<br>
&lt;CustomAction Id=&#39;AssignConfigFile&#39; <br>
                Property=&#39;CONFIGFILE&#39; <br>
               Value=&#39;[PRODUCTINSTALLFOLDER]pathtoconfigfile&#092;web.config&#39; /&gt;<br>
 &lt;InstallExecuteSequence&gt;<br>
   &lt;Custom Action=&quot;AssignConfigFile&quot; After=&quot;CostFinalize&quot; /&gt;<br>
   &lt;Custom Action=&quot;ConfigurEwsFilter&quot; Before=&quot;InstallFinalize&quot;  /&gt;<br>
 &lt;/InstallExecuteSequence&gt;<br>
<br>
<br>
....<br>
<br>
session.Log(&quot;Session value for CONFIGFILE = &#39;{0}&#39;&quot;, session[&quot;CONFIGFILE&quot;]);]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3516134</guid>
        <pubDate>Fri, 22 Aug 2014 10:25:55 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3516134</link>
        <description><![CDATA[Fester: Должно быть <br>
&lt;CustomAction Id=&quot;ConfigUpgrade&quot; Return=&quot;check&quot; Execute=&quot;immediate&quot; BinaryKey=&quot;CusAction.CA.dll&quot; DllEntry=&quot;ConfigUpgrade&quot; /&gt;<br>
<br>
<br>
<div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3516086'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Tatyana Druzenko &#064; <time class="tag-quote__quoted-time" datetime="2014-08-22T07:32:36+00:00">22.08.14, 07:32</time></span><div class='quote '>В объявлении CustomAction хочу указать, что когда 3 версия установлена, то свойство PRODUCT_V3_INSTALLED = 1. И потом это использовать.</div></div><br>
PRODUCT_V3_INSTALLED ты устанавливаешь когда ищешь установленные продукты.<br>
<br>
<div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3516086'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Tatyana Druzenko &#064; <time class="tag-quote__quoted-time" datetime="2014-08-22T07:32:36+00:00">22.08.14, 07:32</time></span><div class='quote '>И создала CustomAction. Пытаюсь написать условие, но как указать действие - устанавливать например?</div></div><br>
<a class='tag-url' href='http://msdn.microsoft.com/en-us/library/aa370383%28v=vs.85%29.aspx' target='_blank'>MsiSetComponentState function</a>]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3516086</guid>
        <pubDate>Fri, 22 Aug 2014 07:32:36 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3516086</link>
        <description><![CDATA[Tatyana Druzenko: Я что-то запуталась в C# и XML.<br>
<br>
Вот я написала:<br>
&lt;Binary Id=&quot;CusAction.CA.dll&quot; SourceFile=&quot;..&#092;OpenSoft.InkRouter.ShedulerService.CustomAction&#092;bin&#092;&#036;(var.Configuration)&#092;OpenSoft.InkRouter.ShedulerService.CustomAction.CA.dll&quot; /&gt;<br>
<br>
&lt;CustomAction Id=&quot;ConfigUpgrade&quot; Property=&quot;PRODUCT_V3_INSTALLED&quot; Value=&quot;1&quot; Return=&quot;check&quot; Execute=&quot;immediate&quot; BinaryKey=&quot;CusAction.CA.dll&quot; DllEntry=&quot;ConfigUpgrade&quot; /&gt;<br>
<br>
&lt;InstallExecuteSequence&gt;<br>
  &lt;Custom Action=&quot;ConfigUpgrade&quot; Before=&quot;InstallFinalize&quot; /&gt;<br>
&lt;/InstallExecuteSequence&gt;    <br>
<br>
В объявлении CustomAction хочу указать, что когда 3 версия установлена, то свойство PRODUCT_V3_INSTALLED = 1. И потом это использовать.<br>
<br>
И создала CustomAction. Пытаюсь написать условие, но как указать действие - устанавливать например?<br>
<br>
public class CustomActions<br>
    {<br>
        [CustomAction]<br>
        public static ActionResult CustomAction1(Session session)<br>
        {<br>
            //session.Log(&quot;Begin CustomAction1&quot;);<br>
            if (session[&quot;PRODUCT_V3_INSTALLED&quot;].Equals(1))<br>
            {<br>
              ....<br>
            }<br>
            else { ... }<br>
            return ActionResult.Success;<br>
        }<br>
    }]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3516067</guid>
        <pubDate>Fri, 22 Aug 2014 06:36:39 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3516067</link>
        <description><![CDATA[Fester: <div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3516052'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Tatyana Druzenko &#064; <time class="tag-quote__quoted-time" datetime="2014-08-22T05:50:15+00:00">22.08.14, 05:50</time></span><div class='quote '>Вы говорите, что обработки ошибки в скрипте нет, а что же означает вот эта строчка: </div></div><br>
Не знаю :) Я vbscript не понимаю :D<br>
<br>
<br>
<br>
Можно и на C#: <a class='tag-url' href='http://blogs.msdn.com/b/jschaffe/archive/2012/10/23/creating-wix-custom-actions-in-c-and-passing-parameters.aspx' target='_blank'>Creating WiX Custom Actions in C# and Passing Parameters</a><br>
Я кастом экшены делаю на С++.]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3516052</guid>
        <pubDate>Fri, 22 Aug 2014 05:50:15 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3516052</link>
        <description><![CDATA[Tatyana Druzenko: Я попробовала просто руками как обычно создать папку в Program Files - получилось. Значит дело не в правах?<br><br><br>Вы говорите, что обработки ошибки в скрипте нет, а что же означает вот эта строчка: <br><br>On Error Resume Next<br><br><br>Можно ли писать код в CustomAction не на vbscript, а на C# например? С обычными if-else?]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515800</guid>
        <pubDate>Thu, 21 Aug 2014 12:39:35 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515800</link>
        <description><![CDATA[Fester: Пределение происходит в элементе CustomAction. По умолчанию  immediate.<br>Значит твое действие выполнилось.<br><br>Папка могла не создаться из-за того, что фаза immediate работает с пониженными правами запустившего пользователя, а для создания папки в Program Files нужна повышенные права. <br>Обработки ошибок в скрипте нет, поэтому ничего не произошло.<br><br>Ради теста можешь определить это действие как deferred и перенеси его до InstallFinalize (т.к. deferred custom actions могут располагаться только межно InstallInitialize и InstallFinalize)<br><br><br><br>Однако это только для теста :) Тебе надо immediate и менять в статус компонент в зависимости от условий :)]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515789</guid>
        <pubDate>Thu, 21 Aug 2014 12:25:59 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515789</link>
        <description><![CDATA[Tatyana Druzenko: Я все написала, как в примере из статьи. Где происходит во это определение:  immediate или deferred?]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515788</guid>
        <pubDate>Thu, 21 Aug 2014 12:24:20 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515788</link>
        <description><![CDATA[Fester: <div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3515726'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Tatyana Druzenko &#064; <time class="tag-quote__quoted-time" datetime="2014-08-21T11:07:52+00:00">21.08.14, 11:07</time></span><div class='quote '>Вот кусочек из лога, получается кастом экшен выполнился? </div></div><br>
Зависит от того, как ты этот кастом экшен определила :)<br>
Если immediate, то да, выполнился. А если deferred, то еще не выполнился :)<br>
<br>
<br>
<div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3515726'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Tatyana Druzenko &#064; <time class="tag-quote__quoted-time" datetime="2014-08-21T11:07:52+00:00">21.08.14, 11:07</time></span><div class='quote '>Или вот эта строчка означает, что кастом экшен не выполнился?</div></div><br>
Это означает успешное (т.е. без ошибки) завершение работы кастом экшена.<br>
0 - это код ERROR_SUCCESS]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515726</guid>
        <pubDate>Thu, 21 Aug 2014 11:07:52 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515726</link>
        <description><![CDATA[Tatyana Druzenko: А как посмотреть, выполнился ли CustomAction? В логе? <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-08-21T11:11:29+00:00">21.08.14, 11:11</time></span></span><br>
MSI (s) (DC:E0) [14:36:33:443]: Doing action: CreateConfigFolder<br>
MSI (s) (DC:E0) [14:36:33:443]: Note: 1: 2205 2:  3: ActionText <br>
Action start 14:36:33: CreateConfigFolder.<br>
Action ended 14:36:33: CreateConfigFolder. Return value 0.<br>
Action ended 14:36:33: INSTALL. Return value 1.<br>
Property(S): UpgradeCode = {70D91CCB-A39B-4230-A08C-1019C9B41589}<br>
Property(S): INSTALLLOCATION = C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;<br>
Property(S): InkRouter = C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;<br>
Property(S): DesktopFolder = C:&#092;Users&#092;Public&#092;Desktop&#092;<br>
Property(S): OpenSoft = C:&#092;Program Files (x86)&#092;OpenSoft&#092;<br>
Property(S): ProgramFilesFolder = C:&#092;Program Files (x86)&#092;<br>
Property(S): TARGETDIR = D:&#092;<br>
Property(S): SourceDir = C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.ShedulerService.v.4&#092;bin&#092;Debug&#092;<br>
Property(S): VersionNT = 603<br>
Property(S): ALLUSERS = 1<br>
<br>
<br>
Вот кусочек из лога, получается кастом экшен выполнился? <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-08-21T11:18:40+00:00">21.08.14, 11:18</time></span></span><br>
Или вот эта строчка означает, что кастом экшен не выполнился?<br>
Action ended 14:36:33: CreateConfigFolder. Return value 0.]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515717</guid>
        <pubDate>Thu, 21 Aug 2014 10:51:08 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515717</link>
        <description><![CDATA[Fester: <div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3515690'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Tatyana Druzenko &#064; <time class="tag-quote__quoted-time" datetime="2014-08-21T10:14:59+00:00">21.08.14, 10:14</time></span><div class='quote '>так как же я его добавлю? компилятор опять будет ругаться, у меня же &lt;MajorUpgrade&gt;. </div></div><br>
MajorUpgrade к InstallExecuteSequence никакого отношения не имеет. Просто в прошлый раз получилось так, что одно действие было добавлено два раза :)<br>
<br>
<br>
<div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3515690'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Tatyana Druzenko &#064; <time class="tag-quote__quoted-time" datetime="2014-08-21T10:14:59+00:00">21.08.14, 10:14</time></span><div class='quote '>и ничего не создалось</div></div><br>
Ну а CustomAction-то выполнился?]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515690</guid>
        <pubDate>Thu, 21 Aug 2014 10:14:59 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515690</link>
        <description><![CDATA[Tatyana Druzenko: <div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3515688'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Fester &#064; <time class="tag-quote__quoted-time" datetime="2014-08-21T10:12:21+00:00">21.08.14, 10:12</time></span><div class='quote '>добавить :D</div></div><br>
так как же я его добавлю? компилятор опять будет ругаться, у меня же &lt;MajorUpgrade&gt;. <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-08-21T10:39:25+00:00">21.08.14, 10:39</time></span></span><br>
Попробовала сделать прямо как в статье пример с созданием папки Config с помощью CustomAction - и ничего не создалось :( Думала изменить написанный скрипт на установку файла, а не на создание папки, а у меня даже готовый скрипт не сработал :(]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515688</guid>
        <pubDate>Thu, 21 Aug 2014 10:12:21 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515688</link>
        <description><![CDATA[Fester: <div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3515657'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Tatyana Druzenko &#064; <time class="tag-quote__quoted-time" datetime="2014-08-21T09:40:07+00:00">21.08.14, 09:40</time></span><div class='quote '>Ну это ведь только для 4-ой версии надо сделать?</div></div><br>
нет, для 3-й тоже.<br>
<br>
<br>
<div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3515657'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Tatyana Druzenko &#064; <time class="tag-quote__quoted-time" datetime="2014-08-21T09:40:07+00:00">21.08.14, 09:40</time></span><div class='quote '>А можно ссылку какую-нибудь про CustomAction. Как их использовать?</div></div><br>
<a class='tag-url' href='http://habrahabr.ru/post/71917/' target='_blank'>Custom Action в WiX</a> <br>
<br>
<br>
<div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3515657'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Tatyana Druzenko &#064; <time class="tag-quote__quoted-time" datetime="2014-08-21T09:40:07+00:00">21.08.14, 09:40</time></span><div class='quote '>Мне использовать такой кастом экшен?</div></div><br>
Нет, придется писать кастом экшен самой :) На C++ или на скриптовом языке - это как уже тебе удобно :)<br>
<br>
<br>
<div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3515657'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Tatyana Druzenko &#064; <time class="tag-quote__quoted-time" datetime="2014-08-21T09:40:07+00:00">21.08.14, 09:40</time></span><div class='quote '>И где его вызывать, если у меня нет блока &lt;InstallExecuteSequence&gt;. </div></div><br>
добавить :D]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515657</guid>
        <pubDate>Thu, 21 Aug 2014 09:40:07 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515657</link>
        <description><![CDATA[Tatyana Druzenko: Ну это ведь только для 4-ой версии надо сделать?<br>
А можно ссылку какую-нибудь про CustomAction.  Как их использовать? <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-08-21T09:57:32+00:00">21.08.14, 09:57</time></span></span><br>
Мне использовать такой кастом экшен?<br>
&lt;CustomAction Id=&quot;MyAction.SetProperty&quot; Return=&quot;check&quot; Property=&quot;MyAction&quot; Value=&quot;[PRODUCT_V3_INSTALLED]&quot; /&gt;<br>
И где его вызывать, если у меня нет блока &lt;InstallExecuteSequence&gt;.]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515653</guid>
        <pubDate>Thu, 21 Aug 2014 09:34:02 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515653</link>
        <description><![CDATA[Fester: боюсь, что все это не поможет.<br>как вариант можно попробовать откатить все назад (убрать кондишены итд) и попробовать управлять установкой &quot;в ручном режиме&quot; из кастом экшена....<br><br>если и это не поможет, то других идей на данный момент нету :(]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515636</guid>
        <pubDate>Thu, 21 Aug 2014 09:08:23 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515636</link>
        <description><![CDATA[Tatyana Druzenko: Может кондишен в Feature прописать, а не в Component?]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515610</guid>
        <pubDate>Thu, 21 Aug 2014 08:08:27 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515610</link>
        <description><![CDATA[Tatyana Druzenko: Может быть у меня все-таки само свойство неправильно написано? или кондишен? <br>Если убрать кондишен в компоненте, то конфиг-файл ставится в любом случае новый, то есть не выполняется условие, что при обновлении с 3-ей версии на 4-ю, конфиг сохраняется и не обновляется.]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515585</guid>
        <pubDate>Thu, 21 Aug 2014 07:09:39 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515585</link>
        <description><![CDATA[Tatyana Druzenko: А есть какие-нибудь идеи, что можно изменить в коде? Получается свойство DefaultVersion не помогло?]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515387</guid>
        <pubDate>Wed, 20 Aug 2014 12:49:52 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515387</link>
        <description><![CDATA[Fester: странно, в обоих случаях Action: Null... т.е. инсталлер не собирается удалять... :scratch:]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515297</guid>
        <pubDate>Wed, 20 Aug 2014 10:47:04 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515297</link>
        <description><![CDATA[Tatyana Druzenko: вот переставила заново, теперь есть 2 блока, первый:<br>
<br>
MSI (s) (E4:EC) [14:44:23:014]: Feature: ProductFeature; Installed: Absent;   Request: Local;   Action: Local<br>
MSI (s) (E4:EC) [14:44:23:014]: Feature: RemoveConfigsFeature; Installed: Absent;   Request: Local;   Action: Local<br>
MSI (s) (E4:EC) [14:44:23:014]: Component: log4net.dll; Installed: Absent;   Request: Local;   Action: Local<br>
MSI (s) (E4:EC) [14:44:23:014]: Component: RemoveConfigs; Installed: Absent;   Request: Local;   Action: Local<br>
MSI (s) (E4:EC) [14:44:23:014]: Component: SchedulerService.exe; Installed: Absent;   Request: Local;   Action: Local<br>
MSI (s) (E4:EC) [14:44:23:014]: Component: SchedulerService.exe.config; Installed: Absent;   Request: Local;   Action: Null<br>
MSI (s) (E4:EC) [14:44:23:014]: Component: __RemoveConfigs65; Installed: Null;   Request: Local;   Action: Local<br>
MSI (s) (E4:EC) [14:44:23:014]: Component: __RemoveConfigs66; Installed: Null;   Request: Local;   Action: Local<br>
<br>
второй:<br>
<br>
MSI (s) (E4:2C) [14:44:23:285]: PROPERTY CHANGE: Deleting MsiRestartManagerSessionKey property. Its current value is &#39;2b342117500a7e488fe97fdc22bec230&#39;.<br>
MSI (s) (E4:2C) [14:44:23:285]: Feature: ProductFeature; Installed: Local;   Request: Absent;   Action: Absent<br>
MSI (s) (E4:2C) [14:44:23:285]: Component: log4net.dll; Installed: Local;   Request: Absent;   Action: Absent<br>
MSI (s) (E4:2C) [14:44:23:285]: Component: SchedulerService.exe.config; Installed: Local;   Request: Absent;   Action: Null<br>
MSI (s) (E4:2C) [14:44:23:285]: Component: RemoveConfigs; Installed: Local;   Request: Absent;   Action: Absent<br>
MSI (s) (E4:2C) [14:44:23:285]: Component: SchedulerService.exe; Installed: Local;   Request: Absent;   Action: Absent<br>
MSI (s) (E4:2C) [14:44:23:285]: Component: __RemoveConfigs65; Installed: Null;   Request: Absent;   Action: Absent<br>
MSI (s) (E4:2C) [14:44:23:285]: Component: __RemoveConfigs66; Installed: Null;   Request: Absent;   Action: Absent <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-08-20T11:20:10+00:00">20.08.14, 11:20</time></span></span><br>
Не совсем понятно, что означают эти строки. Вроде написано : Installed: Local - значит должен был установиться этот файл, как и другие, а его нет :(]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515287</guid>
        <pubDate>Wed, 20 Aug 2014 10:35:04 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515287</link>
        <description><![CDATA[Fester: странно.... а где же тогда установка новой версии?  :scratch:]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515285</guid>
        <pubDate>Wed, 20 Aug 2014 10:27:25 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515285</link>
        <description><![CDATA[Tatyana Druzenko: Вот еще 2 строчки, где упоминается название конфиг-файла:<br>
MSI (s) (AC:10) [12:43:59:883]: Executing op: FileRemove(,FileName=SchedulerService.exe.config,,)<br>
MSI (s) (AC:10) [12:43:59:885]: Verifying accessibility of file: SchedulerService.exe.config]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515284</guid>
        <pubDate>Wed, 20 Aug 2014 10:24:38 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515284</link>
        <description><![CDATA[Fester: должен быть еще один похожий блок...<br><br><br><br>вот поэтому я и говорю, что все плохо :)]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515264</guid>
        <pubDate>Wed, 20 Aug 2014 09:36:42 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515264</link>
        <description><![CDATA[Tatyana Druzenko: Конфига вообще нет <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-08-20T09:39:12+00:00">20.08.14, 09:39</time></span></span><br>
Второй такой строчки нет. Вот все компоненты:<br>
MSI (s) (AC:10) [12:43:57:593]: Component: log4net.dll; Installed: Local;   Request: Absent;   Action: Absent<br>
MSI (s) (AC:10) [12:43:57:593]: Component: RemoveConfigs; Installed: Local;   Request: Absent;   Action: Absent<br>
MSI (s) (AC:10) [12:43:57:593]: Component: SchedulerService.exe; Installed: Local;   Request: Absent;   Action: Absent<br>
MSI (s) (AC:10) [12:43:57:593]: Component: SchedulerService.exe.config; Installed: Local;   Request: Absent;   Action: Null<br>
MSI (s) (AC:10) [12:43:57:593]: Component: __RemoveConfigs65; Installed: Null;   Request: Absent;   Action: Absent<br>
MSI (s) (AC:10) [12:43:57:593]: Component: __RemoveConfigs66; Installed: Null;   Request: Absent;   Action: Absent <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-08-20T09:43:14+00:00">20.08.14, 09:43</time></span></span><br>
Файл наоборот удаляется :(]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515251</guid>
        <pubDate>Wed, 20 Aug 2014 09:22:58 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515251</link>
        <description><![CDATA[Fester: null означает, что никаких действий проводиться не будет, т.е. файл не удаляется. <br>
<br>
<br>
<div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3515219'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Tatyana Druzenko &#064; <time class="tag-quote__quoted-time" datetime="2014-08-20T08:29:09+00:00">20.08.14, 08:29</time></span><div class='quote '>когда обновляю 3-ю версию до 4-ой он вообще не ставит конфиг-файл </div></div><br>
т.е. конфига вообще нет? или остается от 3-й версии? <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-08-20T09:23:49+00:00">20.08.14, 09:23</time></span></span><br>
<div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3515238'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Tatyana Druzenko &#064; <time class="tag-quote__quoted-time" datetime="2014-08-20T08:57:27+00:00">20.08.14, 08:57</time></span><div class='quote '>Component: SchedulerService.exe.config; Installed: Local; Request: Absent; Action: Null</div></div><br>
таких строчек должно быть 2 :) одна при удалении 3-й версии, другая при установке 4-й версии.]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515238</guid>
        <pubDate>Wed, 20 Aug 2014 08:57:27 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515238</link>
        <description><![CDATA[Tatyana Druzenko: Component: SchedulerService.exe.config; Installed: Local;   Request: Absent;   Action: Null<br>вот строчка из лога - Null - значит не устанавливает файл? Как понять почему? <br><br>У других компонентов вот так : <br>Component: SchedulerService.exe; Installed: Local;   Request: Absent;   Action: Absent]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515227</guid>
        <pubDate>Wed, 20 Aug 2014 08:40:45 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515227</link>
        <description><![CDATA[Fester: Что в логах?<br>Ищи строчки типа &quot;Component: SchedulerService.exe.config; Installed: Absent; Request: Local; Action: Local&quot;]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515219</guid>
        <pubDate>Wed, 20 Aug 2014 08:29:09 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515219</link>
        <description><![CDATA[Tatyana Druzenko: К сожалению, не работает :( когда обновляю 3-ю версию до 4-ой он вообще не ставит конфиг-файл]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515212</guid>
        <pubDate>Wed, 20 Aug 2014 08:20:43 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515212</link>
        <description><![CDATA[Fester: <div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3514712'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Tatyana Druzenko &#064; <time class="tag-quote__quoted-time" datetime="2014-08-19T11:38:57+00:00">19.08.14, 11:38</time></span><div class='quote '>Я установила у этого файла свойство DefaultVersion=&quot;3.0.0.0&quot;, но ничего не поменялось - файл так и не устанавливается.</div></div><br>
т.е. ты установила для 1-й и 2-й версии продукта версию конфигурации 1.0.0, для 3-й и 4-й версий - 3.0.0 и все равно не работает?]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515178</guid>
        <pubDate>Wed, 20 Aug 2014 07:00:32 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3515178</link>
        <description><![CDATA[Tatyana Druzenko: Вот, у файла версия есть :)<br>
<span class="b-attach" data-size="35141" data-hits="710" data-attach-id="39265" data-attach-post-id="3515178">
			<span class="b-attach__title"></span><a class='b-attach-link' href='https://forum.sources.ru/index.php?act=Attach&amp;type=post&amp;id=3515178&amp;attach_id=39265' title='Скачать файл' target='_blank'>orca.png</a> (, : 710)
		</span>]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514794</guid>
        <pubDate>Tue, 19 Aug 2014 13:09:03 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514794</link>
        <description><![CDATA[Fester: посмотри оркой, есть ли версия у этого файла]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514712</guid>
        <pubDate>Tue, 19 Aug 2014 11:38:57 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514712</link>
        <description><![CDATA[Tatyana Druzenko: К сожалению такого бинарника нет, значит попробую использовать DefaultVersion. Спасибо  :) <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-08-19T12:12:15+00:00">19.08.14, 12:12</time></span></span><br>
Я установила у этого файла свойство DefaultVersion=&quot;3.0.0.0&quot;, но ничего не поменялось - файл так и не устанавливается. В интернете не смогла найти пример использования этого свойства  :oops: и в книге по wix тоже.]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514710</guid>
        <pubDate>Tue, 19 Aug 2014 11:36:04 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514710</link>
        <description><![CDATA[Fester: <div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3514693'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Tatyana Druzenko &#064; <time class="tag-quote__quoted-time" datetime="2014-08-19T10:42:54+00:00">19.08.14, 10:42</time></span><div class='quote '>Чем мне может помочь свойство DefaultVersion? </div></div><br>
Тебе нужно задать версию файла, тогда ты сможешь по-нормальному использовать апгрейд.<br>
Теоретически ты можешь записать версию файла прямо в MSI, тогда будет версия и можно будет апгрейдить (если не поменяли чего :)). <br>
<br>
<br>
<div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3514693'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Tatyana Druzenko &#064; <time class="tag-quote__quoted-time" datetime="2014-08-19T10:42:54+00:00">19.08.14, 10:42</time></span><div class='quote '>This is the default version of this file. The linker will replace this value from the value in the file if the suppress files option is not used.</div></div><br>
Это версия файла по умолчанию. Линковщик заменит это значение значением из файла, если не будет использована опция &quot;suppress files&quot;. <br>
<br>
Попробуй, может быть проканает ;)<br>
<br>
<br>
<br>
<div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3514693'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Tatyana Druzenko &#064; <time class="tag-quote__quoted-time" datetime="2014-08-19T10:42:54+00:00">19.08.14, 10:42</time></span><div class='quote '>Про свойство CompanionFile тоже неособо понятно.</div></div><br>
это свойство &quot;привязывает&quot; твой файл к бинарнику, например к SchedulerService.exe. В этом случае файл без версии будет обновляться всегда вместе с &quot;привязанным бинарником&quot;. Но, насколько я понимаю, это не твой случай... или у тебя есть бинарник, который обновляется также как и конфигурация?]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514693</guid>
        <pubDate>Tue, 19 Aug 2014 10:42:54 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514693</link>
        <description><![CDATA[Tatyana Druzenko: Почему все плохо?:)<br>
Чем мне может помочь свойство DefaultVersion? Просто перевод описания этого свойства совершенно непонятен :) <br>
This is the default version of this file. The linker will replace this value from the value in the file if the suppress files option is not used.<br>
<br>
Про свойство CompanionFile тоже неособо понятно. Может есть статьи какие-нибудь на русском? <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-08-19T11:23:14+00:00">19.08.14, 11:23</time></span></span><br>
Мне нужно написать что-то типа этого? <br>
<br>
&lt;Component ....&gt;<br>
  &lt;File Id=&quot;parent&quot; ... KeyPath=&quot;yes&quot; /&gt;<br>
  &lt;File Id=&quot;companion&quot; .... Companion=&quot;parent&quot; /&gt;<br>
&lt;/Component&gt;]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514689</guid>
        <pubDate>Tue, 19 Aug 2014 10:31:14 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514689</link>
        <description><![CDATA[Fester: Мда, все плохо :)<br><br>Я так понимаю, что использовать атрибут DefaultVersion элемента File не получится (хотя попробуй, вдруг будет работать? раньше я делал такие финты)<br><br>Можно привязаться к какому-нибудь бинарнику с версией? (для CompanionFile)]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514632</guid>
        <pubDate>Tue, 19 Aug 2014 08:19:39 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514632</link>
        <description><![CDATA[Tatyana Druzenko: Это лог, когда я обновляю 3-ю версию до 4-ой<br>
<span class="b-attach" data-size="23736" data-hits="225" data-attach-id="39232" data-attach-post-id="3514632">
			<span class="b-attach__title"></span><a class='b-attach-link' href='https://forum.sources.ru/index.php?act=Attach&amp;type=post&amp;id=3514632&amp;attach_id=39232' title='Скачать файл' target='_blank'>MSIf6093.zip</a> (, : 225)
		</span>]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514388</guid>
        <pubDate>Mon, 18 Aug 2014 13:28:34 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514388</link>
        <description><![CDATA[Fester: а что в логах?]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514353</guid>
        <pubDate>Mon, 18 Aug 2014 11:52:30 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514353</link>
        <description><![CDATA[Tatyana Druzenko: Убрала :)  конфиг файл заменился, спасибо большое за помощь  :D <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-08-18T12:17:56+00:00">18.08.14, 12:17</time></span></span><br>
Представляете, теперь, когда установлена 3 версия и я ее обновляю до 4-ой, он меняет конфиг, хотя должен его сохранять. Похоже, что это из-за Schedule=&quot;afterInstallInitialize&quot;.<br>
<br>
Хотя у меня написано условие, как Вы писали :<br>
 <br>
&lt;Property Id=&quot;PRODUCT_V3_INSTALLED&quot;&gt;<br>
      &lt;ProductSearch Minimum=&quot;3.0.0&quot; IncludeMinimum=&quot;yes&quot; Maximum=&quot;4.0.0&quot; IncludeMaximum=&quot;no&quot; UpgradeCode=&quot;&#036;(var.UpgradeCode)&quot; /&gt;<br>
&lt;/Property&gt;<br>
<br>
&lt;Component Id=&quot;SchedulerService.exe.config&quot; Guid=&quot;7FAA0D24-FA90-4DF1-8B94-83F257EDB7B3&quot;&gt;<br>
        &lt;Condition&gt; &lt;&#33;[CDATA[NOT PRODUCT_V3_INSTALLED]]&gt;&lt;/Condition&gt;<br>
        &lt;File Id=&quot;SchedulerService.exe.config&quot; Source=&quot;&#036;(var.OpenSoft.InkRouter.SchedulerService.TargetDir)SchedulerService.exe.config&quot;   Name=&quot;SchedulerService.exe.config&quot;/&gt;<br>
&lt;/Component&gt;]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514350</guid>
        <pubDate>Mon, 18 Aug 2014 11:47:17 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514350</link>
        <description><![CDATA[Fester: так а <div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">&#60;InstallExecuteSequence&#62;</div><div class="code_line">&#60;RemoveExistingProducts After=&quot;InstallInitialize&quot;/&#62;</div><div class="code_line">&#60;/InstallExecuteSequence&#62;</div></ol></div></div></div></div>  убрала? :)]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514340</guid>
        <pubDate>Mon, 18 Aug 2014 11:28:54 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514340</link>
        <description><![CDATA[Tatyana Druzenko: Заменила, ошибки при построении те же :(]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514337</guid>
        <pubDate>Mon, 18 Aug 2014 11:26:21 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514337</link>
        <description><![CDATA[Fester: <div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3514319'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Tatyana Druzenko &#064; <time class="tag-quote__quoted-time" datetime="2014-08-18T10:49:10+00:00">18.08.14, 10:49</time></span><div class='quote '>&lt;MajorUpgrade DowngradeErrorMessage=&quot;A newer version of [ProductName] is already installed.&quot; Schedule=&quot;afterInstallFinalize&quot; /&gt;</div></div><br>
замени на Schedule=&quot;afterInstallInitialize&quot;]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514319</guid>
        <pubDate>Mon, 18 Aug 2014 10:49:10 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514319</link>
        <description><![CDATA[Tatyana Druzenko: Error	1	Duplicate symbol &#39;WixAction:InstallExecuteSequence/RemoveExistingProducts&#39; found. This typically means that an Id is duplicated. Check to make sure all your identifiers of a given type (File, Component, Feature) are unique.	C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.ShedulerService.v.4&#092;Product.wxs	14	1	OpenSoft.InkRouter.ShedulerService.v.4<br>
Error	2	Location of symbol related to previous error.	C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.ShedulerService.v.4&#092;Product.wxs	40	1	OpenSoft.InkRouter.ShedulerService.v.4<br>
<br>
Выдает эти ошибки при построении и указывает на строки:<br>
<br>
&lt;MajorUpgrade DowngradeErrorMessage=&quot;A newer version of [ProductName] is already installed.&quot; Schedule=&quot;afterInstallFinalize&quot; /&gt;<br>
    <br>
и<br>
<br>
&lt;InstallExecuteSequence&gt;<br>
      &lt;RemoveExistingProducts After=&quot;InstallInitialize&quot;/&gt;<br>
&lt;/InstallExecuteSequence&gt; <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-08-18T10:50:32+00:00">18.08.14, 10:50</time></span></span><br>
Все идентификаторы у меня уникальные]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514317</guid>
        <pubDate>Mon, 18 Aug 2014 10:46:25 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514317</link>
        <description><![CDATA[Fester: просто добавь<br>
<div class='tag-code'><span class='pre_code'></span><div class='code  code_collapsed ' title='Подсветка синтаксиса доступна зарегистрированным участникам Форума.' style=''><div><div><ol type="1"><div class="code_line">&#60;InstallExecuteSequence&#62;</div><div class="code_line">&nbsp;&nbsp;&#60;RemoveExistingProducts After=&quot;InstallInitialize&quot;/&#62;</div><div class="code_line">&#60;/InstallExecuteSequence&#62;</div></ol></div></div></div></div>]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514307</guid>
        <pubDate>Mon, 18 Aug 2014 10:31:04 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514307</link>
        <description><![CDATA[Tatyana Druzenko: У меня нет ни строчки  RemoveExistingProducts, ни строчки InstallInitialize]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514302</guid>
        <pubDate>Mon, 18 Aug 2014 10:26:49 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514302</link>
        <description><![CDATA[Fester: хмм... попробуй передвинуть RemoveExistingProducts в положение сразу после InstallInitialize.]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514282</guid>
        <pubDate>Mon, 18 Aug 2014 09:59:32 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514282</link>
        <description><![CDATA[Tatyana Druzenko: <span class="b-attach" data-size="40059" data-hits="231" data-attach-id="39215" data-attach-post-id="3514282">
			<span class="b-attach__title"></span><a class='b-attach-link' href='https://forum.sources.ru/index.php?act=Attach&amp;type=post&amp;id=3514282&amp;attach_id=39215' title='Скачать файл' target='_blank'>Desktop.zip</a> (, : 231)
		</span> <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-08-18T10:01:13+00:00">18.08.14, 10:01</time></span></span><br>
Это первая версия <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-08-18T10:02:06+00:00">18.08.14, 10:02</time></span></span><br>
В архиве первый файл с установкой 1 версии продукта, второй файл с установкой 4 версии продукта]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514277</guid>
        <pubDate>Mon, 18 Aug 2014 09:54:10 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514277</link>
        <description><![CDATA[Fester: <div class='tag-quote'><a class='tag-quote-link' href='https://forum.sources.ru/index.php?showtopic=393319&view=findpost&p=3514272'><span class='tag-quote-prefix'>Цитата</span></a> <span class='tag-quote__quote-info'>Tatyana Druzenko &#064; <time class="tag-quote__quoted-time" datetime="2014-08-18T09:36:13+00:00">18.08.14, 09:36</time></span><div class='quote '>MSI (s) (E0:58) [13:22:58:683]: Component: SchedulerService.exe.config; Installed: Absent; Request: Local; Action: Local</div></div><br>
это какая версия? <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-08-18T09:55:08+00:00">18.08.14, 09:55</time></span></span><br>
вообще, лучше запакуй логи в архив и обзови эти логи как-то понятно :)]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514272</guid>
        <pubDate>Mon, 18 Aug 2014 09:36:13 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514272</link>
        <description><![CDATA[Tatyana Druzenko: [сode=ins]<br>
=== Verbose logging started: 18.08.2014  13:22:50  Build type: SHIP UNICODE 5.00.9600.00  Calling process: C:&#092;Windows&#092;System32&#092;msiexec.exe ===<br>
MSI &copy; (14:78) [13:22:50:936]: Font created.  Charset: Req=204, Ret=204, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg<br>
<br>
MSI &copy; (14:78) [13:22:50:937]: Font created.  Charset: Req=204, Ret=204, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg<br>
<br>
MSI &copy; (14:5C) [13:22:50:972]: Resetting cached policy values<br>
MSI &copy; (14:5C) [13:22:50:972]: Machine policy value &#39;Debug&#39; is 0<br>
MSI &copy; (14:5C) [13:22:50:972]: ******* RunEngine:<br>
           ******* Product: C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;SchedulerService.msi<br>
           ******* Action: <br>
           ******* CommandLine: **********<br>
MSI &copy; (14:5C) [13:22:50:973]: Machine policy value &#39;DisableUserInstalls&#39; is 0<br>
MSI &copy; (14:78) [13:22:51:022]: Font created.  Charset: Req=0, Ret=0, Font: Req=, Ret=Arial<br>
<br>
MSI &copy; (14:78) [13:22:51:025]: Font created.  Charset: Req=0, Ret=0, Font: Req=, Ret=Arial<br>
<br>
MSI &copy; (14:5C) [13:22:51:028]: SOFTWARE RESTRICTION POLICY: Verifying package --&#62; &#39;C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;SchedulerService.msi&#39; against software restriction policy<br>
MSI &copy; (14:5C) [13:22:51:028]: Note: 1: 2262 2:  DigitalSignature 3: -2147287038 <br>
MSI &copy; (14:5C) [13:22:51:028]: SOFTWARE RESTRICTION POLICY: C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;SchedulerService.msi is not digitally signed<br>
MSI &copy; (14:5C) [13:22:51:030]: SOFTWARE RESTRICTION POLICY: C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;SchedulerService.msi is permitted to run at the &#39;unrestricted&#39; authorization level.<br>
MSI &copy; (14:5C) [13:22:51:038]: Cloaking enabled.<br>
MSI &copy; (14:5C) [13:22:51:038]: Attempting to enable all disabled privileges before calling Install on Server<br>
MSI &copy; (14:5C) [13:22:51:040]: End dialog not enabled<br>
MSI &copy; (14:5C) [13:22:51:040]: Original package ==&gt; C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;SchedulerService.msi<br>
MSI &copy; (14:5C) [13:22:51:040]: Package we&#39;re running from ==&gt; C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;SchedulerService.msi<br>
MSI &copy; (14:5C) [13:22:51:043]: APPCOMPAT: Compatibility mode property overrides found.<br>
MSI &copy; (14:5C) [13:22:51:043]: APPCOMPAT: looking for appcompat database entry with ProductCode &#39;{6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}&#39;.<br>
MSI &copy; (14:5C) [13:22:51:043]: APPCOMPAT: no matching ProductCode found in database.<br>
MSI &copy; (14:5C) [13:22:51:048]: MSCOREE not loaded loading copy from system32<br>
MSI &copy; (14:5C) [13:22:51:051]: Machine policy value &#39;TransformsSecure&#39; is 0<br>
MSI &copy; (14:5C) [13:22:51:051]: User policy value &#39;TransformsAtSource&#39; is 0<br>
MSI &copy; (14:5C) [13:22:51:052]: Machine policy value &#39;DisablePatch&#39; is 0<br>
MSI &copy; (14:5C) [13:22:51:052]: Machine policy value &#39;AllowLockdownPatch&#39; is 0<br>
MSI &copy; (14:5C) [13:22:51:052]: Machine policy value &#39;DisableMsi&#39; is 0<br>
MSI &copy; (14:5C) [13:22:51:052]: Machine policy value &#39;AlwaysInstallElevated&#39; is 0<br>
MSI &copy; (14:5C) [13:22:51:052]: User policy value &#39;AlwaysInstallElevated&#39; is 0<br>
MSI &copy; (14:5C) [13:22:51:052]: Running product &#39;{6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}&#39; with user privileges: It&#39;s not assigned.<br>
MSI &copy; (14:5C) [13:22:51:052]: Machine policy value &#39;DisableLUAPatching&#39; is 0<br>
MSI &copy; (14:5C) [13:22:51:052]: Machine policy value &#39;DisableFlyWeightPatching&#39; is 0<br>
MSI &copy; (14:5C) [13:22:51:053]: APPCOMPAT: looking for appcompat database entry with ProductCode &#39;{6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}&#39;.<br>
MSI &copy; (14:5C) [13:22:51:053]: APPCOMPAT: no matching ProductCode found in database.<br>
MSI &copy; (14:5C) [13:22:51:053]: Transforms are not secure.<br>
MSI &copy; (14:5C) [13:22:51:053]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is &#39;C:&#092;Users&#092;TATYAN~1.DRU&#092;AppData&#092;Local&#092;Temp&#092;MSI9243c.LOG&#39;.<br>
MSI &copy; (14:5C) [13:22:51:053]: Command Line: CURRENTDIRECTORY=C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug CLIENTUILEVEL=0 CLIENTPROCESSID=1556 <br>
MSI &copy; (14:5C) [13:22:51:053]: PROPERTY CHANGE: Adding PackageCode property. Its value is &#39;{8B7F28DB-365B-442D-AEBC-FB2F0DAD3A99}&#39;.<br>
MSI &copy; (14:5C) [13:22:51:053]: Product Code passed to Engine.Initialize:           &#39;&#39;<br>
MSI &copy; (14:5C) [13:22:51:053]: Product Code from property table before transforms: &#39;{6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}&#39;<br>
MSI &copy; (14:5C) [13:22:51:053]: Product Code from property table after transforms:  &#39;{6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}&#39;<br>
MSI &copy; (14:5C) [13:22:51:053]: Product not registered: beginning first-time install<br>
MSI &copy; (14:5C) [13:22:51:053]: PROPERTY CHANGE: Adding ProductState property. Its value is &#39;-1&#39;.<br>
MSI &copy; (14:5C) [13:22:51:053]: Entering CMsiConfigurationManager::SetLastUsedSource.<br>
MSI &copy; (14:5C) [13:22:51:053]: User policy value &#39;SearchOrder&#39; is &#39;nmu&#39;<br>
MSI &copy; (14:5C) [13:22:51:053]: Adding new sources is allowed.<br>
MSI &copy; (14:5C) [13:22:51:053]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is &#39;1&#39;.<br>
MSI &copy; (14:5C) [13:22:51:053]: Package name extracted from package path: &#39;SchedulerService.msi&#39;<br>
MSI &copy; (14:5C) [13:22:51:053]: Package to be registered: &#39;SchedulerService.msi&#39;<br>
MSI &copy; (14:5C) [13:22:51:054]: Note: 1: 2262 2: AdminProperties 3: -2147287038 <br>
MSI &copy; (14:5C) [13:22:51:054]: Machine policy value &#39;AlwaysInstallElevated&#39; is 0<br>
MSI &copy; (14:5C) [13:22:51:054]: User policy value &#39;AlwaysInstallElevated&#39; is 0<br>
MSI &copy; (14:5C) [13:22:51:054]: Running product &#39;{6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}&#39; with user privileges: It&#39;s not assigned.<br>
MSI &copy; (14:5C) [13:22:51:054]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is &#39;C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#39;.<br>
MSI &copy; (14:5C) [13:22:51:054]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is &#39;0&#39;.<br>
MSI &copy; (14:5C) [13:22:51:054]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is &#39;1556&#39;.<br>
MSI &copy; (14:5C) [13:22:51:055]: PROPERTY CHANGE: Adding MsiSystemRebootPending property. Its value is &#39;1&#39;.<br>
MSI &copy; (14:5C) [13:22:51:055]: TRANSFORMS property is now: <br>
MSI &copy; (14:5C) [13:22:51:055]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is &#39;200&#39;.<br>
MSI &copy; (14:5C) [13:22:51:055]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming<br>
MSI &copy; (14:5C) [13:22:51:055]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;Favorites<br>
MSI &copy; (14:5C) [13:22:51:055]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Network Shortcuts<br>
MSI &copy; (14:5C) [13:22:51:056]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;Documents<br>
MSI &copy; (14:5C) [13:22:51:056]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Printer Shortcuts<br>
MSI &copy; (14:5C) [13:22:51:056]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Recent<br>
MSI &copy; (14:5C) [13:22:51:056]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;SendTo<br>
MSI &copy; (14:5C) [13:22:51:056]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Templates<br>
MSI &copy; (14:5C) [13:22:51:057]: SHELL32::SHGetFolderPath returned: C:&#092;ProgramData<br>
MSI &copy; (14:5C) [13:22:51:057]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Local<br>
MSI &copy; (14:5C) [13:22:51:058]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;Pictures<br>
MSI &copy; (14:5C) [13:22:51:058]: SHELL32::SHGetFolderPath returned: C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Start Menu&#092;Programs&#092;Administrative Tools<br>
MSI &copy; (14:5C) [13:22:51:058]: SHELL32::SHGetFolderPath returned: C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Start Menu&#092;Programs&#092;Startup<br>
MSI &copy; (14:5C) [13:22:51:058]: SHELL32::SHGetFolderPath returned: C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Start Menu&#092;Programs<br>
MSI &copy; (14:5C) [13:22:51:058]: SHELL32::SHGetFolderPath returned: C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Start Menu<br>
MSI &copy; (14:5C) [13:22:51:058]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;Public&#092;Desktop<br>
MSI &copy; (14:5C) [13:22:51:059]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Start Menu&#092;Programs&#092;Administrative Tools<br>
MSI &copy; (14:5C) [13:22:51:059]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Start Menu&#092;Programs&#092;Startup<br>
MSI &copy; (14:5C) [13:22:51:059]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Start Menu&#092;Programs<br>
MSI &copy; (14:5C) [13:22:51:059]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Start Menu<br>
MSI &copy; (14:5C) [13:22:51:059]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;Desktop<br>
MSI &copy; (14:5C) [13:22:51:060]: SHELL32::SHGetFolderPath returned: C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Templates<br>
MSI &copy; (14:5C) [13:22:51:060]: SHELL32::SHGetFolderPath returned: C:&#092;Windows&#092;Fonts<br>
MSI &copy; (14:5C) [13:22:51:062]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16 <br>
MSI &copy; (14:5C) [13:22:51:067]: MSI_LUA: Setting AdminUser property to 1 because this is the client or the user has already permitted elevation<br>
MSI &copy; (14:5C) [13:22:51:067]: PROPERTY CHANGE: Adding AdminUser property. Its value is &#39;1&#39;.<br>
MSI &copy; (14:5C) [13:22:51:068]: PROPERTY CHANGE: Adding Privileged property. Its value is &#39;1&#39;.<br>
MSI &copy; (14:5C) [13:22:51:068]: Note: 1: 1402 2: HKEY_CURRENT_USER&#092;Software&#092;Microsoft&#092;MS Setup (ACME)&#092;User Info 3: 2 <br>
MSI &copy; (14:5C) [13:22:51:068]: PROPERTY CHANGE: Adding USERNAME property. Its value is &#39;adm&#39;.<br>
MSI &copy; (14:5C) [13:22:51:068]: Note: 1: 1402 2: HKEY_CURRENT_USER&#092;Software&#092;Microsoft&#092;MS Setup (ACME)&#092;User Info 3: 2 <br>
MSI &copy; (14:5C) [13:22:51:068]: PROPERTY CHANGE: Adding DATABASE property. Its value is &#39;C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;SchedulerService.msi&#39;.<br>
MSI &copy; (14:5C) [13:22:51:068]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is &#39;C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;SchedulerService.msi&#39;.<br>
MSI &copy; (14:5C) [13:22:51:068]: Machine policy value &#39;MsiDisableEmbeddedUI&#39; is 0<br>
MSI &copy; (14:5C) [13:22:51:068]: PROPERTY CHANGE: Adding SourceDir property. Its value is &#39;C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;&#39;.<br>
MSI &copy; (14:5C) [13:22:51:068]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is &#39;C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;&#39;.<br>
MSI &copy; (14:78) [13:22:51:069]: PROPERTY CHANGE: Adding VersionHandler property. Its value is &#39;5.00&#39;.<br>
=== Logging started: 18.08.2014  13:22:51 ===<br>
MSI &copy; (14:5C) [13:22:51:082]: Note: 1: 2205 2:  3: PatchPackage <br>
MSI &copy; (14:5C) [13:22:51:082]: Machine policy value &#39;DisableRollback&#39; is 0<br>
MSI &copy; (14:5C) [13:22:51:082]: User policy value &#39;DisableRollback&#39; is 0<br>
MSI &copy; (14:5C) [13:22:51:082]: PROPERTY CHANGE: Adding UILevel property. Its value is &#39;5&#39;.<br>
MSI &copy; (14:5C) [13:22:51:084]: Note: 1: 2203 2: C:&#092;Windows&#092;Installer&#092;inprogressinstallinfo.ipi 3: -2147287038 <br>
MSI &copy; (14:5C) [13:22:51:085]: APPCOMPAT: [DetectVersionLaunchCondition] Launch condition already passes.<br>
MSI &copy; (14:5C) [13:22:51:086]: PROPERTY CHANGE: Adding ACTION property. Its value is &#39;INSTALL&#39;.<br>
MSI &copy; (14:5C) [13:22:51:086]: Doing action: INSTALL<br>
MSI &copy; (14:5C) [13:22:51:086]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:51: INSTALL. <br>
Action start 13:22:51: INSTALL.<br>
MSI &copy; (14:5C) [13:22:51:087]: UI Sequence table &#39;InstallUISequence&#39; is present and populated.<br>
MSI &copy; (14:5C) [13:22:51:087]: Running UISequence<br>
MSI &copy; (14:5C) [13:22:51:087]: PROPERTY CHANGE: Adding EXECUTEACTION property. Its value is &#39;INSTALL&#39;.<br>
MSI &copy; (14:5C) [13:22:51:087]: Doing action: FindRelatedProducts<br>
MSI &copy; (14:5C) [13:22:51:087]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:51: FindRelatedProducts. Searching for related applications<br>
Action start 13:22:51: FindRelatedProducts.<br>
Action ended 13:22:51: FindRelatedProducts. Return value 1.<br>
MSI &copy; (14:5C) [13:22:51:088]: Doing action: PrepareDlg<br>
MSI &copy; (14:5C) [13:22:51:088]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:51: PrepareDlg. <br>
Action start 13:22:51: PrepareDlg.<br>
Info 2898.For WixUI_Font_Normal textstyle, the system created a &#39;Tahoma&#39; font, in 0 character set, of 13 pixels height.<br>
Info 2898.For WixUI_Font_Bigger textstyle, the system created a &#39;Tahoma&#39; font, in 0 character set, of 19 pixels height.<br>
Action 13:22:51: PrepareDlg. Dialog created<br>
Action ended 13:22:51: PrepareDlg. Return value 1.<br>
MSI &copy; (14:5C) [13:22:51:123]: Doing action: AppSearch<br>
MSI &copy; (14:5C) [13:22:51:123]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:51: AppSearch. Searching for installed applications<br>
Action start 13:22:51: AppSearch.<br>
MSI &copy; (14:5C) [13:22:51:128]: Note: 1: 2205 2:  3: AppSearch <br>
MSI &copy; (14:5C) [13:22:51:128]: Note: 1: 2228 2:  3: AppSearch 4: SELECT `Property`, `Signature_` FROM `AppSearch` <br>
Action ended 13:22:51: AppSearch. Return value 0.<br>
MSI &copy; (14:5C) [13:22:51:128]: Doing action: LaunchConditions<br>
MSI &copy; (14:5C) [13:22:51:128]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:51: LaunchConditions. Evaluating launch conditions<br>
Action start 13:22:51: LaunchConditions.<br>
Action ended 13:22:51: LaunchConditions. Return value 1.<br>
MSI &copy; (14:5C) [13:22:51:131]: Doing action: ValidateProductID<br>
MSI &copy; (14:5C) [13:22:51:131]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:51: ValidateProductID. <br>
Action start 13:22:51: ValidateProductID.<br>
Action ended 13:22:51: ValidateProductID. Return value 1.<br>
MSI &copy; (14:5C) [13:22:51:134]: Doing action: CostInitialize<br>
MSI &copy; (14:5C) [13:22:51:134]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:51: CostInitialize. Computing space requirements<br>
Action start 13:22:51: CostInitialize.<br>
MSI &copy; (14:5C) [13:22:51:138]: Machine policy value &#39;MaxPatchCacheSize&#39; is 10<br>
MSI &copy; (14:5C) [13:22:51:140]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is &#39;D:&#092;&#39;.<br>
MSI &copy; (14:5C) [13:22:51:140]: PROPERTY CHANGE: Adding CostingComplete property. Its value is &#39;0&#39;.<br>
Action ended 13:22:51: CostInitialize. Return value 1.<br>
MSI &copy; (14:5C) [13:22:51:140]: Doing action: FileCost<br>
MSI &copy; (14:5C) [13:22:51:141]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:51: FileCost. Computing space requirements<br>
Action start 13:22:51: FileCost.<br>
MSI &copy; (14:5C) [13:22:51:145]: Note: 1: 2205 2:  3: MsiAssembly <br>
MSI &copy; (14:5C) [13:22:51:145]: Note: 1: 2205 2:  3: Registry <br>
MSI &copy; (14:5C) [13:22:51:145]: Note: 1: 2205 2:  3: Registry <br>
MSI &copy; (14:5C) [13:22:51:145]: Note: 1: 2205 2:  3: Class <br>
MSI &copy; (14:5C) [13:22:51:145]: Note: 1: 2205 2:  3: Extension <br>
MSI &copy; (14:5C) [13:22:51:145]: Note: 1: 2205 2:  3: TypeLib <br>
Action ended 13:22:51: FileCost. Return value 1.<br>
MSI &copy; (14:5C) [13:22:51:146]: Doing action: CostFinalize<br>
MSI &copy; (14:5C) [13:22:51:146]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:51: CostFinalize. Computing space requirements<br>
Action start 13:22:51: CostFinalize.<br>
MSI &copy; (14:5C) [13:22:51:148]: PROPERTY CHANGE: Adding OutOfDiskSpace property. Its value is &#39;0&#39;.<br>
MSI &copy; (14:5C) [13:22:51:148]: PROPERTY CHANGE: Adding OutOfNoRbDiskSpace property. Its value is &#39;0&#39;.<br>
MSI &copy; (14:5C) [13:22:51:148]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceAvailable property. Its value is &#39;0&#39;.<br>
MSI &copy; (14:5C) [13:22:51:148]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRequired property. Its value is &#39;0&#39;.<br>
MSI &copy; (14:5C) [13:22:51:148]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is &#39;0&#39;.<br>
MSI &copy; (14:5C) [13:22:51:148]: Note: 1: 2205 2:  3: Patch <br>
MSI &copy; (14:5C) [13:22:51:148]: Note: 1: 2205 2:  3: Condition <br>
MSI &copy; (14:5C) [13:22:51:149]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is &#39;D:&#092;&#39;.<br>
MSI &copy; (14:5C) [13:22:51:149]: PROPERTY CHANGE: Adding OpenSoft property. Its value is &#39;C:&#092;Program Files (x86)&#092;OpenSoft&#092;&#39;.<br>
MSI &copy; (14:5C) [13:22:51:149]: PROPERTY CHANGE: Adding InkRouter property. Its value is &#39;C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;&#39;.<br>
MSI &copy; (14:5C) [13:22:51:149]: PROPERTY CHANGE: Adding INSTALLLOCATION property. Its value is &#39;C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;&#39;.<br>
MSI &copy; (14:5C) [13:22:51:149]: Target path resolution complete. Dumping Directory table...<br>
MSI &copy; (14:5C) [13:22:51:149]: Note: target paths subject to change (via custom actions or browsing)<br>
MSI &copy; (14:5C) [13:22:51:149]: Dir (target): Key: TARGETDIR	, Object: D:&#092;<br>
MSI &copy; (14:5C) [13:22:51:149]: Dir (target): Key: ProgramFilesFolder	, Object: C:&#092;Program Files (x86)&#092;<br>
MSI &copy; (14:5C) [13:22:51:149]: Dir (target): Key: OpenSoft	, Object: C:&#092;Program Files (x86)&#092;OpenSoft&#092;<br>
MSI &copy; (14:5C) [13:22:51:149]: Dir (target): Key: InkRouter	, Object: C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;<br>
MSI &copy; (14:5C) [13:22:51:149]: Dir (target): Key: INSTALLLOCATION	, Object: C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;<br>
MSI &copy; (14:5C) [13:22:51:149]: PROPERTY CHANGE: Adding INSTALLLEVEL property. Its value is &#39;1&#39;.<br>
MSI &copy; (14:5C) [13:22:51:149]: Note: 1: 2205 2:  3: MsiAssembly <br>
MSI &copy; (14:5C) [13:22:51:149]: Note: 1: 2228 2:  3: MsiAssembly 4:  SELECT `MsiAssembly`.`Attributes`, `MsiAssembly`.`File_Application`, `MsiAssembly`.`File_Manifest`,  `Component`.`KeyPath` FROM `MsiAssembly`, `Component` WHERE  `MsiAssembly`.`Component_` = `Component`.`Component` AND `MsiAssembly`.`Component_` = ? <br>
Action ended 13:22:51: CostFinalize. Return value 1.<br>
MSI &copy; (14:5C) [13:22:51:150]: Doing action: MigrateFeatureStates<br>
MSI &copy; (14:5C) [13:22:51:150]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:51: MigrateFeatureStates. Migrating feature states from related applications<br>
Action start 13:22:51: MigrateFeatureStates.<br>
Action ended 13:22:51: MigrateFeatureStates. Return value 0.<br>
MSI &copy; (14:5C) [13:22:51:153]: Skipping action: MaintenanceWelcomeDlg (condition is false)<br>
MSI &copy; (14:5C) [13:22:51:153]: Skipping action: ResumeDlg (condition is false)<br>
MSI &copy; (14:5C) [13:22:51:153]: Doing action: WelcomeDlg<br>
MSI &copy; (14:5C) [13:22:51:153]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:51: WelcomeDlg. <br>
Action start 13:22:51: WelcomeDlg.<br>
Action 13:22:51: WelcomeDlg. Dialog created<br>
MSI &copy; (14:30) [13:22:51:177]: Note: 1: 2205 2:  3: _RemoveFilePath <br>
MSI &copy; (14:30) [13:22:51:183]: PROPERTY CHANGE: Modifying CostingComplete property. Its current value is &#39;0&#39;. Its new value: &#39;1&#39;.<br>
MSI &copy; (14:30) [13:22:51:183]: Note: 1: 2205 2:  3: Registry <br>
MSI &copy; (14:30) [13:22:51:183]: Note: 1: 2205 2:  3: BindImage <br>
MSI &copy; (14:30) [13:22:51:183]: Note: 1: 2205 2:  3: ProgId <br>
MSI &copy; (14:30) [13:22:51:183]: Note: 1: 2205 2:  3: PublishComponent <br>
MSI &copy; (14:30) [13:22:51:183]: Note: 1: 2205 2:  3: SelfReg <br>
MSI &copy; (14:30) [13:22:51:183]: Note: 1: 2205 2:  3: Extension <br>
MSI &copy; (14:30) [13:22:51:184]: Note: 1: 2205 2:  3: Font <br>
MSI &copy; (14:30) [13:22:51:184]: Note: 1: 2205 2:  3: Shortcut <br>
MSI &copy; (14:30) [13:22:51:184]: Note: 1: 2205 2:  3: Class <br>
MSI &copy; (14:30) [13:22:51:184]: Note: 1: 2205 2:  3: Icon <br>
MSI &copy; (14:30) [13:22:51:184]: Note: 1: 2205 2:  3: TypeLib <br>
MSI &copy; (14:30) [13:22:51:185]: Note: 1: 2727 2:  <br>
Info 2898.For WixUI_Font_Normal__UL textstyle, the system created a &#39;Tahoma&#39; font, in 204 character set, of 13 pixels height.<br>
Action 13:22:52: ShortcutsDlg. Dialog created<br>
MSI &copy; (14:78) [13:22:56:315]: PROPERTY CHANGE: Modifying REMOTE_PORT property. Its current value is &#39;21856&#39;. Its new value: &#39;2185611&#39;.<br>
Info 2898.For WixUI_Font_Title textstyle, the system created a &#39;Tahoma&#39; font, in 0 character set, of 14 pixels height.<br>
Action 13:22:56: VerifyReadyDlg. Dialog created<br>
MSI &copy; (14:78) [13:22:56:908]: Note: 1: 2727 2:  <br>
Action ended 13:22:57: WelcomeDlg. Return value 1.<br>
MSI &copy; (14:5C) [13:22:57:231]: Doing action: ProgressDlg<br>
MSI &copy; (14:5C) [13:22:57:231]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:57: ProgressDlg. <br>
Action start 13:22:57: ProgressDlg.<br>
Action 13:22:57: ProgressDlg. Dialog created<br>
Action ended 13:22:57: ProgressDlg. Return value 1.<br>
MSI &copy; (14:5C) [13:22:57:254]: Doing action: ExecuteAction<br>
MSI &copy; (14:5C) [13:22:57:254]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:57: ExecuteAction. <br>
Action start 13:22:57: ExecuteAction.<br>
MSI &copy; (14:5C) [13:22:57:257]: PROPERTY CHANGE: Adding SECONDSEQUENCE property. Its value is &#39;1&#39;.<br>
MSI &copy; (14:5C) [13:22:57:260]: Grabbed execution mutex.<br>
MSI &copy; (14:5C) [13:22:57:260]: Incrementing counter to disable shutdown. Counter after increment: 0<br>
MSI &copy; (14:5C) [13:22:57:261]: Switching to server: INSTALLLOCATION=&quot;C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;&quot; REMOTE_PORT=&quot;2185611&quot; TARGETDIR=&quot;D:&#092;&quot; CURRENTDIRECTORY=&quot;C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&quot; CLIENTUILEVEL=&quot;0&quot; CLIENTPROCESSID=&quot;1556&quot; USERNAME=&quot;adm&quot; SOURCEDIR=&quot;C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;&quot; ACTION=&quot;INSTALL&quot; EXECUTEACTION=&quot;INSTALL&quot; ROOTDRIVE=&quot;D:&#092;&quot; INSTALLLEVEL=&quot;1&quot; SECONDSEQUENCE=&quot;1&quot;  ADDLOCAL=ProductFeature  <br>
MSI (s) (E0:58) [13:22:57:267]: Running installation inside multi-package transaction C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;SchedulerService.msi<br>
MSI (s) (E0:58) [13:22:57:267]: Grabbed execution mutex.<br>
MSI (s) (E0:58) [13:22:57:292]: Resetting cached policy values<br>
MSI (s) (E0:58) [13:22:57:292]: Machine policy value &#39;Debug&#39; is 0<br>
MSI (s) (E0:58) [13:22:57:292]: ******* RunEngine:<br>
           ******* Product: C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;SchedulerService.msi<br>
           ******* Action: INSTALL<br>
           ******* CommandLine: **********<br>
MSI (s) (E0:58) [13:22:57:293]: Machine policy value &#39;DisableUserInstalls&#39; is 0<br>
MSI (s) (E0:58) [13:22:57:343]: Note: 1: 2203 2: C:&#092;Windows&#092;Installer&#092;inprogressinstallinfo.ipi 3: -2147287038 <br>
MSI (s) (E0:58) [13:22:57:345]: Machine policy value &#39;LimitSystemRestoreCheckpointing&#39; is 0<br>
MSI (s) (E0:58) [13:22:57:345]: Note: 1: 1715 2: InkRouter SchedulerService <br>
MSI (s) (E0:58) [13:22:57:345]: Calling SRSetRestorePoint API. dwRestorePtType: 0, dwEventType: 102, llSequenceNumber: 0, szDescription: &quot;Installed InkRouter SchedulerService&quot;.<br>
MSI (s) (E0:58) [13:22:57:360]: The call to SRSetRestorePoint API succeeded. Returned status: 0, llSequenceNumber: 44.<br>
MSI (s) (E0:58) [13:22:57:361]: Note: 1: 1402 2: HKEY_CURRENT_USER&#092;Software&#092;Microsoft&#092;Windows&#092;CurrentVersion&#092;Policies&#092;Explorer 3: 2 <br>
MSI (s) (E0:58) [13:22:57:363]: File will have security applied from OpCode.<br>
MSI (s) (E0:58) [13:22:57:502]: SOFTWARE RESTRICTION POLICY: Verifying package --&#62; &#39;C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;SchedulerService.msi&#39; against software restriction policy<br>
MSI (s) (E0:58) [13:22:57:502]: Note: 1: 2262 2:  DigitalSignature 3: -2147287038 <br>
MSI (s) (E0:58) [13:22:57:502]: SOFTWARE RESTRICTION POLICY: C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;SchedulerService.msi is not digitally signed<br>
MSI (s) (E0:58) [13:22:57:504]: SOFTWARE RESTRICTION POLICY: C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;SchedulerService.msi is permitted to run at the &#39;unrestricted&#39; authorization level.<br>
MSI (s) (E0:58) [13:22:57:504]: MSCOREE not loaded loading copy from system32<br>
MSI (s) (E0:58) [13:22:57:508]: End dialog not enabled<br>
MSI (s) (E0:58) [13:22:57:508]: Original package ==&gt; C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;SchedulerService.msi<br>
MSI (s) (E0:58) [13:22:57:508]: Package we&#39;re running from ==&gt; C:&#092;Windows&#092;Installer&#092;385961.msi<br>
MSI (s) (E0:58) [13:22:57:510]: APPCOMPAT: Compatibility mode property overrides found.<br>
MSI (s) (E0:58) [13:22:57:510]: APPCOMPAT: looking for appcompat database entry with ProductCode &#39;{6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}&#39;.<br>
MSI (s) (E0:58) [13:22:57:510]: APPCOMPAT: no matching ProductCode found in database.<br>
MSI (s) (E0:58) [13:22:57:514]: Machine policy value &#39;TransformsSecure&#39; is 0<br>
MSI (s) (E0:58) [13:22:57:514]: User policy value &#39;TransformsAtSource&#39; is 0<br>
MSI (s) (E0:58) [13:22:57:514]: Machine policy value &#39;DisablePatch&#39; is 0<br>
MSI (s) (E0:58) [13:22:57:514]: Machine policy value &#39;AllowLockdownPatch&#39; is 0<br>
MSI (s) (E0:58) [13:22:57:514]: Machine policy value &#39;DisableMsi&#39; is 0<br>
MSI (s) (E0:58) [13:22:57:514]: Machine policy value &#39;AlwaysInstallElevated&#39; is 0<br>
MSI (s) (E0:58) [13:22:57:514]: User policy value &#39;AlwaysInstallElevated&#39; is 0<br>
MSI (s) (E0:58) [13:22:57:514]: Running product &#39;{6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}&#39; with user privileges: It&#39;s not assigned.<br>
MSI (s) (E0:58) [13:22:57:514]: Machine policy value &#39;DisableLUAPatching&#39; is 0<br>
MSI (s) (E0:58) [13:22:57:514]: Machine policy value &#39;DisableFlyWeightPatching&#39; is 0<br>
MSI (s) (E0:58) [13:22:57:515]: APPCOMPAT: looking for appcompat database entry with ProductCode &#39;{6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}&#39;.<br>
MSI (s) (E0:58) [13:22:57:515]: APPCOMPAT: no matching ProductCode found in database.<br>
MSI (s) (E0:58) [13:22:57:515]: Transforms are not secure.<br>
MSI (s) (E0:58) [13:22:57:515]: PROPERTY CHANGE: Adding MsiLogFileLocation property. Its value is &#39;C:&#092;Users&#092;TATYAN~1.DRU&#092;AppData&#092;Local&#092;Temp&#092;MSI9243c.LOG&#39;.<br>
MSI (s) (E0:58) [13:22:57:515]: Command Line: INSTALLLOCATION=C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092; REMOTE_PORT=2185611 TARGETDIR=D:&#092; CURRENTDIRECTORY=C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug CLIENTUILEVEL=0 CLIENTPROCESSID=1556 USERNAME=adm SOURCEDIR=C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092; ACTION=INSTALL EXECUTEACTION=INSTALL ROOTDRIVE=D:&#092; INSTALLLEVEL=1 SECONDSEQUENCE=1 ADDLOCAL=ProductFeature ACTION=INSTALL <br>
MSI (s) (E0:58) [13:22:57:515]: PROPERTY CHANGE: Adding PackageCode property. Its value is &#39;{8B7F28DB-365B-442D-AEBC-FB2F0DAD3A99}&#39;.<br>
MSI (s) (E0:58) [13:22:57:515]: Product Code passed to Engine.Initialize:           &#39;&#39;<br>
MSI (s) (E0:58) [13:22:57:515]: Product Code from property table before transforms: &#39;{6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}&#39;<br>
MSI (s) (E0:58) [13:22:57:515]: Product Code from property table after transforms:  &#39;{6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}&#39;<br>
MSI (s) (E0:58) [13:22:57:515]: Product not registered: beginning first-time install<br>
MSI (s) (E0:58) [13:22:57:517]: Product {6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D} is not managed.<br>
MSI (s) (E0:58) [13:22:57:517]: Machine policy value &#39;AlwaysInstallElevated&#39; is 0<br>
MSI (s) (E0:58) [13:22:57:517]: User policy value &#39;AlwaysInstallElevated&#39; is 0<br>
MSI (s) (E0:58) [13:22:57:517]: MSI_LUA: Elevation required to install product, will prompt for credentials<br>
MSI (s) (E0:58) [13:22:58:614]: MSI_LUA: Credential Request return = 0x0<br>
MSI (s) (E0:58) [13:22:58:614]: MSI_LUA: Elevated credential consent provided. Install will run elevated<br>
MSI (s) (E0:58) [13:22:58:614]: Note: 1: 2205 2:  3: MsiPackageCertificate <br>
MSI (s) (E0:58) [13:22:58:614]: Note: 1: 2205 2:  3: MsiDigitalCertificate <br>
MSI (s) (E0:58) [13:22:58:614]: PROPERTY CHANGE: Adding ProductState property. Its value is &#39;-1&#39;.<br>
MSI (s) (E0:58) [13:22:58:614]: Entering CMsiConfigurationManager::SetLastUsedSource.<br>
MSI (s) (E0:58) [13:22:58:614]: User policy value &#39;SearchOrder&#39; is &#39;nmu&#39;<br>
MSI (s) (E0:58) [13:22:58:614]: Adding new sources is allowed.<br>
MSI (s) (E0:58) [13:22:58:614]: PROPERTY CHANGE: Adding PackagecodeChanging property. Its value is &#39;1&#39;.<br>
MSI (s) (E0:58) [13:22:58:614]: Package name extracted from package path: &#39;SchedulerService.msi&#39;<br>
MSI (s) (E0:58) [13:22:58:615]: Package to be registered: &#39;SchedulerService.msi&#39;<br>
MSI (s) (E0:58) [13:22:58:616]: Note: 1: 2262 2: AdminProperties 3: -2147287038 <br>
MSI (s) (E0:58) [13:22:58:616]: Machine policy value &#39;AlwaysInstallElevated&#39; is 0<br>
MSI (s) (E0:58) [13:22:58:616]: User policy value &#39;AlwaysInstallElevated&#39; is 0<br>
MSI (s) (E0:58) [13:22:58:616]: Product installation will be elevated because user provided elevated credentials and product is being installed per-machine.<br>
MSI (s) (E0:58) [13:22:58:616]: Running product &#39;{6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}&#39; with elevated privileges: Product is assigned.<br>
MSI (s) (E0:58) [13:22:58:616]: PROPERTY CHANGE: Adding INSTALLLOCATION property. Its value is &#39;C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;&#39;.<br>
MSI (s) (E0:58) [13:22:58:616]: PROPERTY CHANGE: Modifying REMOTE_PORT property. Its current value is &#39;21856&#39;. Its new value: &#39;2185611&#39;.<br>
MSI (s) (E0:58) [13:22:58:616]: PROPERTY CHANGE: Adding TARGETDIR property. Its value is &#39;D:&#092;&#39;.<br>
MSI (s) (E0:58) [13:22:58:616]: PROPERTY CHANGE: Adding CURRENTDIRECTORY property. Its value is &#39;C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#39;.<br>
MSI (s) (E0:58) [13:22:58:616]: PROPERTY CHANGE: Adding CLIENTUILEVEL property. Its value is &#39;0&#39;.<br>
MSI (s) (E0:58) [13:22:58:616]: PROPERTY CHANGE: Adding CLIENTPROCESSID property. Its value is &#39;1556&#39;.<br>
MSI (s) (E0:58) [13:22:58:616]: PROPERTY CHANGE: Adding USERNAME property. Its value is &#39;adm&#39;.<br>
MSI (s) (E0:58) [13:22:58:616]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is &#39;C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;&#39;.<br>
MSI (s) (E0:58) [13:22:58:616]: PROPERTY CHANGE: Adding ACTION property. Its value is &#39;INSTALL&#39;.<br>
MSI (s) (E0:58) [13:22:58:616]: PROPERTY CHANGE: Adding EXECUTEACTION property. Its value is &#39;INSTALL&#39;.<br>
MSI (s) (E0:58) [13:22:58:616]: PROPERTY CHANGE: Adding ROOTDRIVE property. Its value is &#39;D:&#092;&#39;.<br>
MSI (s) (E0:58) [13:22:58:616]: PROPERTY CHANGE: Adding INSTALLLEVEL property. Its value is &#39;1&#39;.<br>
MSI (s) (E0:58) [13:22:58:616]: PROPERTY CHANGE: Adding SECONDSEQUENCE property. Its value is &#39;1&#39;.<br>
MSI (s) (E0:58) [13:22:58:616]: PROPERTY CHANGE: Adding ADDLOCAL property. Its value is &#39;ProductFeature&#39;.<br>
MSI (s) (E0:58) [13:22:58:616]: Machine policy value &#39;DisableAutomaticApplicationShutdown&#39; is 0<br>
MSI (s) (E0:58) [13:22:58:617]: PROPERTY CHANGE: Adding MsiRestartManagerSessionKey property. Its value is &#39;3c8dfe22812c9f40adfb6f9b3dc10e4b&#39;.<br>
MSI (s) (E0:58) [13:22:58:617]: RESTART MANAGER: Session opened.<br>
MSI (s) (E0:58) [13:22:58:617]: PROPERTY CHANGE: Adding MsiSystemRebootPending property. Its value is &#39;1&#39;.<br>
MSI (s) (E0:58) [13:22:58:617]: Engine has iefSecondSequence set to true.<br>
MSI (s) (E0:58) [13:22:58:618]: TRANSFORMS property is now: <br>
MSI (s) (E0:58) [13:22:58:618]: PROPERTY CHANGE: Deleting SOURCEDIR property. Its current value is &#39;C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;&#39;.<br>
MSI (s) (E0:58) [13:22:58:618]: PROPERTY CHANGE: Adding VersionDatabase property. Its value is &#39;200&#39;.<br>
MSI (s) (E0:58) [13:22:58:620]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming<br>
MSI (s) (E0:58) [13:22:58:621]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;Favorites<br>
MSI (s) (E0:58) [13:22:58:623]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Network Shortcuts<br>
MSI (s) (E0:58) [13:22:58:626]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;Documents<br>
MSI (s) (E0:58) [13:22:58:627]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Printer Shortcuts<br>
MSI (s) (E0:58) [13:22:58:628]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Recent<br>
MSI (s) (E0:58) [13:22:58:630]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;SendTo<br>
MSI (s) (E0:58) [13:22:58:631]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Templates<br>
MSI (s) (E0:58) [13:22:58:631]: SHELL32::SHGetFolderPath returned: C:&#092;ProgramData<br>
MSI (s) (E0:58) [13:22:58:632]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Local<br>
MSI (s) (E0:58) [13:22:58:633]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;Pictures<br>
MSI (s) (E0:58) [13:22:58:636]: SHELL32::SHGetFolderPath returned: C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Start Menu&#092;Programs&#092;Administrative Tools<br>
MSI (s) (E0:58) [13:22:58:637]: SHELL32::SHGetFolderPath returned: C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Start Menu&#092;Programs&#092;Startup<br>
MSI (s) (E0:58) [13:22:58:638]: SHELL32::SHGetFolderPath returned: C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Start Menu&#092;Programs<br>
MSI (s) (E0:58) [13:22:58:640]: SHELL32::SHGetFolderPath returned: C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Start Menu<br>
MSI (s) (E0:58) [13:22:58:642]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;Public&#092;Desktop<br>
MSI (s) (E0:58) [13:22:58:645]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Start Menu&#092;Programs&#092;Administrative Tools<br>
MSI (s) (E0:58) [13:22:58:647]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Start Menu&#092;Programs&#092;Startup<br>
MSI (s) (E0:58) [13:22:58:648]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Start Menu&#092;Programs<br>
MSI (s) (E0:58) [13:22:58:649]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Start Menu<br>
MSI (s) (E0:58) [13:22:58:651]: SHELL32::SHGetFolderPath returned: C:&#092;Users&#092;tatyana.druzenko&#092;Desktop<br>
MSI (s) (E0:58) [13:22:58:653]: SHELL32::SHGetFolderPath returned: C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Templates<br>
MSI (s) (E0:58) [13:22:58:653]: SHELL32::SHGetFolderPath returned: C:&#092;Windows&#092;Fonts<br>
MSI (s) (E0:58) [13:22:58:653]: Note: 1: 2898 2: MS Sans Serif 3: MS Sans Serif 4: 0 5: 16 <br>
MSI (s) (E0:58) [13:22:58:657]: MSI_LUA: Setting AdminUser property to 1 because this is the client or the user has already permitted elevation<br>
MSI (s) (E0:58) [13:22:58:657]: PROPERTY CHANGE: Adding AdminUser property. Its value is &#39;1&#39;.<br>
MSI (s) (E0:58) [13:22:58:657]: MSI_LUA: Setting MsiRunningElevated property to 1 because the install is already running elevated.<br>
MSI (s) (E0:58) [13:22:58:657]: PROPERTY CHANGE: Adding MsiRunningElevated property. Its value is &#39;1&#39;.<br>
MSI (s) (E0:58) [13:22:58:657]: PROPERTY CHANGE: Adding Privileged property. Its value is &#39;1&#39;.<br>
MSI (s) (E0:58) [13:22:58:657]: Note: 1: 1402 2: HKEY_CURRENT_USER&#092;Software&#092;Microsoft&#092;MS Setup (ACME)&#092;User Info 3: 2 <br>
MSI (s) (E0:58) [13:22:58:657]: PROPERTY CHANGE: Adding DATABASE property. Its value is &#39;C:&#092;Windows&#092;Installer&#092;385961.msi&#39;.<br>
MSI (s) (E0:58) [13:22:58:658]: PROPERTY CHANGE: Adding OriginalDatabase property. Its value is &#39;C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;SchedulerService.msi&#39;.<br>
MSI (s) (E0:58) [13:22:58:658]: Machine policy value &#39;MsiDisableEmbeddedUI&#39; is 0<br>
MSI (s) (E0:58) [13:22:58:658]: EEUI - Disabling MsiEmbeddedUI for service because it&#39;s not a quiet/basic install<br>
MSI (s) (E0:58) [13:22:58:658]: Note: 1: 2205 2:  3: PatchPackage <br>
MSI (s) (E0:58) [13:22:58:658]: Machine policy value &#39;DisableRollback&#39; is 0<br>
MSI (s) (E0:58) [13:22:58:658]: User policy value &#39;DisableRollback&#39; is 0<br>
MSI (s) (E0:58) [13:22:58:658]: PROPERTY CHANGE: Adding UILevel property. Its value is &#39;5&#39;.<br>
MSI (s) (E0:58) [13:22:58:659]: PROPERTY CHANGE: Adding Preselected property. Its value is &#39;1&#39;.<br>
MSI (s) (E0:58) [13:22:58:659]: APPCOMPAT: [DetectVersionLaunchCondition] Launch condition already passes.<br>
MSI (s) (E0:58) [13:22:58:659]: Doing action: INSTALL<br>
MSI (s) (E0:58) [13:22:58:659]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:58: INSTALL. <br>
Action start 13:22:58: INSTALL.<br>
MSI (s) (E0:58) [13:22:58:661]: Running ExecuteSequence<br>
MSI (s) (E0:58) [13:22:58:661]: Doing action: FindRelatedProducts<br>
MSI (s) (E0:58) [13:22:58:661]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:58: FindRelatedProducts. Searching for related applications<br>
Action start 13:22:58: FindRelatedProducts.<br>
MSI (s) (E0:58) [13:22:58:663]: Skipping FindRelatedProducts action: already done on client side<br>
Action ended 13:22:58: FindRelatedProducts. Return value 0.<br>
MSI (s) (E0:58) [13:22:58:663]: Doing action: LaunchConditions<br>
MSI (s) (E0:58) [13:22:58:663]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:58: LaunchConditions. Evaluating launch conditions<br>
Action start 13:22:58: LaunchConditions.<br>
Action ended 13:22:58: LaunchConditions. Return value 1.<br>
MSI (s) (E0:58) [13:22:58:665]: Doing action: ValidateProductID<br>
MSI (s) (E0:58) [13:22:58:665]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:58: ValidateProductID. <br>
Action start 13:22:58: ValidateProductID.<br>
Action ended 13:22:58: ValidateProductID. Return value 1.<br>
MSI (s) (E0:58) [13:22:58:667]: Doing action: CostInitialize<br>
MSI (s) (E0:58) [13:22:58:667]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:58: CostInitialize. Computing space requirements<br>
Action start 13:22:58: CostInitialize.<br>
MSI (s) (E0:58) [13:22:58:670]: Machine policy value &#39;MaxPatchCacheSize&#39; is 10<br>
MSI (s) (E0:58) [13:22:58:670]: PROPERTY CHANGE: Adding CostingComplete property. Its value is &#39;0&#39;.<br>
MSI (s) (E0:58) [13:22:58:671]: Note: 1: 2205 2:  3: Patch <br>
MSI (s) (E0:58) [13:22:58:671]: Note: 1: 2205 2:  3: PatchPackage <br>
MSI (s) (E0:58) [13:22:58:671]: Note: 1: 2205 2:  3: MsiPatchHeaders <br>
MSI (s) (E0:58) [13:22:58:671]: Note: 1: 2205 2:  3: __MsiPatchFileList <br>
MSI (s) (E0:58) [13:22:58:671]: Note: 1: 2205 2:  3: PatchPackage <br>
MSI (s) (E0:58) [13:22:58:671]: Note: 1: 2228 2:  3: PatchPackage 4: SELECT `DiskId`, `PatchId`, `LastSequence` FROM `Media`, `PatchPackage` WHERE `Media`.`DiskId`=`PatchPackage`.`Media_` ORDER BY `DiskId`  <br>
MSI (s) (E0:58) [13:22:58:671]: Note: 1: 2205 2:  3: Patch <br>
Action ended 13:22:58: CostInitialize. Return value 1.<br>
MSI (s) (E0:58) [13:22:58:671]: Doing action: FileCost<br>
MSI (s) (E0:58) [13:22:58:671]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:58: FileCost. Computing space requirements<br>
Action start 13:22:58: FileCost.<br>
MSI (s) (E0:58) [13:22:58:675]: Note: 1: 2205 2:  3: MsiAssembly <br>
MSI (s) (E0:58) [13:22:58:675]: Note: 1: 2205 2:  3: Registry <br>
MSI (s) (E0:58) [13:22:58:675]: Note: 1: 2205 2:  3: Registry <br>
MSI (s) (E0:58) [13:22:58:675]: Note: 1: 2205 2:  3: Class <br>
MSI (s) (E0:58) [13:22:58:675]: Note: 1: 2205 2:  3: Extension <br>
MSI (s) (E0:58) [13:22:58:675]: Note: 1: 2205 2:  3: TypeLib <br>
Action ended 13:22:58: FileCost. Return value 1.<br>
MSI (s) (E0:58) [13:22:58:675]: Doing action: CostFinalize<br>
MSI (s) (E0:58) [13:22:58:675]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:58: CostFinalize. Computing space requirements<br>
Action start 13:22:58: CostFinalize.<br>
MSI (s) (E0:58) [13:22:58:677]: PROPERTY CHANGE: Adding OutOfDiskSpace property. Its value is &#39;0&#39;.<br>
MSI (s) (E0:58) [13:22:58:677]: PROPERTY CHANGE: Adding OutOfNoRbDiskSpace property. Its value is &#39;0&#39;.<br>
MSI (s) (E0:58) [13:22:58:677]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceAvailable property. Its value is &#39;0&#39;.<br>
MSI (s) (E0:58) [13:22:58:677]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRequired property. Its value is &#39;0&#39;.<br>
MSI (s) (E0:58) [13:22:58:677]: PROPERTY CHANGE: Adding PrimaryVolumeSpaceRemaining property. Its value is &#39;0&#39;.<br>
MSI (s) (E0:58) [13:22:58:677]: Note: 1: 2205 2:  3: Patch <br>
MSI (s) (E0:58) [13:22:58:677]: Note: 1: 2205 2:  3: Condition <br>
MSI (s) (E0:58) [13:22:58:678]: PROPERTY CHANGE: Adding OpenSoft property. Its value is &#39;C:&#092;Program Files (x86)&#092;OpenSoft&#092;&#39;.<br>
MSI (s) (E0:58) [13:22:58:678]: PROPERTY CHANGE: Adding InkRouter property. Its value is &#39;C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;&#39;.<br>
MSI (s) (E0:58) [13:22:58:678]: Target path resolution complete. Dumping Directory table...<br>
MSI (s) (E0:58) [13:22:58:678]: Note: target paths subject to change (via custom actions or browsing)<br>
MSI (s) (E0:58) [13:22:58:678]: Dir (target): Key: TARGETDIR	, Object: D:&#092;<br>
MSI (s) (E0:58) [13:22:58:678]: Dir (target): Key: ProgramFilesFolder	, Object: C:&#092;Program Files (x86)&#092;<br>
MSI (s) (E0:58) [13:22:58:678]: Dir (target): Key: OpenSoft	, Object: C:&#092;Program Files (x86)&#092;OpenSoft&#092;<br>
MSI (s) (E0:58) [13:22:58:678]: Dir (target): Key: InkRouter	, Object: C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;<br>
MSI (s) (E0:58) [13:22:58:678]: Dir (target): Key: INSTALLLOCATION	, Object: C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;<br>
MSI (s) (E0:58) [13:22:58:678]: Note: 1: 2205 2:  3: MsiAssembly <br>
MSI (s) (E0:58) [13:22:58:678]: Note: 1: 2228 2:  3: MsiAssembly 4:  SELECT `MsiAssembly`.`Attributes`, `MsiAssembly`.`File_Application`, `MsiAssembly`.`File_Manifest`,  `Component`.`KeyPath` FROM `MsiAssembly`, `Component` WHERE  `MsiAssembly`.`Component_` = `Component`.`Component` AND `MsiAssembly`.`Component_` = ? <br>
Action ended 13:22:58: CostFinalize. Return value 1.<br>
MSI (s) (E0:58) [13:22:58:679]: Doing action: MigrateFeatureStates<br>
MSI (s) (E0:58) [13:22:58:679]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:58: MigrateFeatureStates. Migrating feature states from related applications<br>
Action start 13:22:58: MigrateFeatureStates.<br>
MSI (s) (E0:58) [13:22:58:681]: Skipping MigrateFeatureStates action: already done on client side<br>
Action ended 13:22:58: MigrateFeatureStates. Return value 0.<br>
MSI (s) (E0:58) [13:22:58:681]: Doing action: InstallValidate<br>
MSI (s) (E0:58) [13:22:58:681]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:58: InstallValidate. Validating install<br>
Action start 13:22:58: InstallValidate.<br>
MSI (s) (E0:58) [13:22:58:683]: PROPERTY CHANGE: Deleting MsiRestartManagerSessionKey property. Its current value is &#39;3c8dfe22812c9f40adfb6f9b3dc10e4b&#39;.<br>
MSI (s) (E0:58) [13:22:58:683]: Feature: ProductFeature; Installed: Absent;   Request: Local;   Action: Local<br>
MSI (s) (E0:58) [13:22:58:683]: Component: log4net.dll; Installed: Absent;   Request: Local;   Action: Local<br>
MSI (s) (E0:58) [13:22:58:683]: Component: SchedulerService.exe.config; Installed: Absent;   Request: Local;   Action: Local<br>
MSI (s) (E0:58) [13:22:58:683]: Component: RemoveConfigs; Installed: Absent;   Request: Local;   Action: Local<br>
MSI (s) (E0:58) [13:22:58:683]: Component: SchedulerService.exe; Installed: Absent;   Request: Local;   Action: Local<br>
MSI (s) (E0:58) [13:22:58:683]: Component: __RemoveConfigs65; Installed: Null;   Request: Local;   Action: Local<br>
MSI (s) (E0:58) [13:22:58:683]: Component: __RemoveConfigs66; Installed: Null;   Request: Local;   Action: Local<br>
MSI (s) (E0:58) [13:22:58:683]: Note: 1: 2205 2:  3: Registry <br>
MSI (s) (E0:58) [13:22:58:683]: Note: 1: 2205 2:  3: BindImage <br>
MSI (s) (E0:58) [13:22:58:683]: Note: 1: 2205 2:  3: ProgId <br>
MSI (s) (E0:58) [13:22:58:683]: Note: 1: 2205 2:  3: PublishComponent <br>
MSI (s) (E0:58) [13:22:58:683]: Note: 1: 2205 2:  3: SelfReg <br>
MSI (s) (E0:58) [13:22:58:683]: Note: 1: 2205 2:  3: Extension <br>
MSI (s) (E0:58) [13:22:58:683]: Note: 1: 2205 2:  3: Font <br>
MSI (s) (E0:58) [13:22:58:683]: Note: 1: 2205 2:  3: Shortcut <br>
MSI (s) (E0:58) [13:22:58:683]: Note: 1: 2205 2:  3: Class <br>
MSI (s) (E0:58) [13:22:58:683]: Note: 1: 2205 2:  3: Icon <br>
MSI (s) (E0:58) [13:22:58:683]: Note: 1: 2205 2:  3: TypeLib <br>
MSI (s) (E0:58) [13:22:58:684]: Note: 1: 2205 2:  3: _RemoveFilePath <br>
MSI (s) (E0:58) [13:22:58:686]: PROPERTY CHANGE: Modifying CostingComplete property. Its current value is &#39;0&#39;. Its new value: &#39;1&#39;.<br>
MSI (s) (E0:58) [13:22:58:687]: Note: 1: 2205 2:  3: Registry <br>
MSI (s) (E0:58) [13:22:58:687]: Note: 1: 2205 2:  3: BindImage <br>
MSI (s) (E0:58) [13:22:58:687]: Note: 1: 2205 2:  3: ProgId <br>
MSI (s) (E0:58) [13:22:58:687]: Note: 1: 2205 2:  3: PublishComponent <br>
MSI (s) (E0:58) [13:22:58:687]: Note: 1: 2205 2:  3: SelfReg <br>
MSI (s) (E0:58) [13:22:58:687]: Note: 1: 2205 2:  3: Extension <br>
MSI (s) (E0:58) [13:22:58:687]: Note: 1: 2205 2:  3: Font <br>
MSI (s) (E0:58) [13:22:58:687]: Note: 1: 2205 2:  3: Shortcut <br>
MSI (s) (E0:58) [13:22:58:687]: Note: 1: 2205 2:  3: Class <br>
MSI (s) (E0:58) [13:22:58:687]: Note: 1: 2205 2:  3: Icon <br>
MSI (s) (E0:58) [13:22:58:687]: Note: 1: 2205 2:  3: TypeLib <br>
MSI (s) (E0:58) [13:22:58:687]: Note: 1: 2727 2:  <br>
MSI (s) (E0:58) [13:22:58:688]: Note: 1: 2205 2:  3: FilesInUse <br>
MSI (s) (E0:58) [13:22:58:711]: Note: 1: 2727 2:  <br>
Action ended 13:22:58: InstallValidate. Return value 1.<br>
MSI (s) (E0:58) [13:22:58:712]: Doing action: RemoveExistingProducts<br>
MSI (s) (E0:58) [13:22:58:712]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:58: RemoveExistingProducts. Removing applications<br>
Action start 13:22:58: RemoveExistingProducts.<br>
Action ended 13:22:58: RemoveExistingProducts. Return value 1.<br>
MSI (s) (E0:58) [13:22:58:715]: Doing action: InstallInitialize<br>
MSI (s) (E0:58) [13:22:58:715]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:58: InstallInitialize. <br>
Action start 13:22:58: InstallInitialize.<br>
MSI (s) (E0:58) [13:22:58:716]: Machine policy value &#39;AlwaysInstallElevated&#39; is 0<br>
MSI (s) (E0:58) [13:22:58:716]: User policy value &#39;AlwaysInstallElevated&#39; is 0<br>
MSI (s) (E0:58) [13:22:58:716]: BeginTransaction: Locking Server<br>
MSI (s) (E0:58) [13:22:58:717]: Note: 1: 2203 2: C:&#092;Windows&#092;Installer&#092;inprogressinstallinfo.ipi 3: -2147287038 <br>
MSI (s) (E0:58) [13:22:58:717]: Note: 1: 2203 2: C:&#092;Windows&#092;Installer&#092;inprogressinstallinfo.ipi 3: -2147287038 <br>
MSI (s) (E0:58) [13:22:58:717]: Server not locked: locking for product {6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}<br>
Action ended 13:22:58: InstallInitialize. Return value 1.<br>
MSI (s) (E0:58) [13:22:58:793]: Doing action: ProcessComponents<br>
MSI (s) (E0:58) [13:22:58:793]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:58: ProcessComponents. Updating component registration<br>
Action start 13:22:58: ProcessComponents.<br>
MSI (s) (E0:58) [13:22:58:795]: Note: 1: 2205 2:  3: MsiPatchCertificate <br>
MSI (s) (E0:58) [13:22:58:795]: LUA patching is disabled: missing MsiPatchCertificate table<br>
MSI (s) (E0:58) [13:22:58:795]: Resolving source.<br>
MSI (s) (E0:58) [13:22:58:795]: Resolving source to launched-from source.<br>
MSI (s) (E0:58) [13:22:58:795]: Setting launched-from source as last-used.<br>
MSI (s) (E0:58) [13:22:58:796]: PROPERTY CHANGE: Adding SourceDir property. Its value is &#39;C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;&#39;.<br>
MSI (s) (E0:58) [13:22:58:796]: PROPERTY CHANGE: Adding SOURCEDIR property. Its value is &#39;C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;&#39;.<br>
MSI (s) (E0:58) [13:22:58:796]: PROPERTY CHANGE: Adding SourcedirProduct property. Its value is &#39;{6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}&#39;.<br>
MSI (s) (E0:58) [13:22:58:796]: SOURCEDIR ==&gt; C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;<br>
MSI (s) (E0:58) [13:22:58:796]: SOURCEDIR product ==&gt; {6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}<br>
MSI (s) (E0:58) [13:22:58:796]: Determining source type<br>
MSI (s) (E0:58) [13:22:58:796]: Source type from package &#39;SchedulerService.msi&#39;: 2<br>
MSI (s) (E0:58) [13:22:58:796]: SECREPAIR: Hash Database: C:&#092;Windows&#092;Installer&#092;SourceHash{6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}<br>
MSI (s) (E0:58) [13:22:58:808]: Note: 1: 2262 2: SourceHash 3: -2147287038 <br>
MSI (s) (E0:58) [13:22:58:910]: SECREPAIR: New Hash Database creation complete.<br>
MSI (s) (E0:58) [13:22:58:942]: SECREPAIR: CryptAcquireContext succeeded<br>
MSI (s) (E0:58) [13:22:58:958]: Source path resolution complete. Dumping Directory table...<br>
MSI (s) (E0:58) [13:22:58:958]: Dir (source): Key: TARGETDIR	, Object: C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;	, LongSubPath: 	, ShortSubPath: <br>
MSI (s) (E0:58) [13:22:58:958]: Dir (source): Key: ProgramFilesFolder	, Object: C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;	, LongSubPath: 	, ShortSubPath: <br>
MSI (s) (E0:58) [13:22:58:958]: Dir (source): Key: OpenSoft	, Object: C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;	, LongSubPath: OpenSoft&#092;	, ShortSubPath: <br>
MSI (s) (E0:58) [13:22:58:958]: Dir (source): Key: InkRouter	, Object: C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;	, LongSubPath: OpenSoft&#092;InkRouter&#092;	, ShortSubPath: OpenSoft&#092;1xv4dely&#092;<br>
MSI (s) (E0:58) [13:22:58:958]: Dir (source): Key: INSTALLLOCATION	, Object: C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;	, LongSubPath: OpenSoft&#092;InkRouter&#092;SchedulerService&#092;	, ShortSubPath: OpenSoft&#092;1xv4dely&#092;_b6mfcuq&#092;<br>
MSI (s) (E0:58) [13:22:58:958]: Note: 1: 2205 2:  3: ActionText <br>
MSI (s) (E0:58) [13:22:58:959]: Note: 1: 2205 2:  3: ActionText <br>
MSI (s) (E0:58) [13:22:58:961]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:58: GenerateScript. Generating script operations for action:<br>
GenerateScript: Updating component registration<br>
Action ended 13:22:58: ProcessComponents. Return value 1.<br>
MSI (s) (E0:58) [13:22:58:984]: Doing action: UnpublishFeatures<br>
MSI (s) (E0:58) [13:22:58:984]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:58: UnpublishFeatures. Unpublishing Product Features<br>
Action start 13:22:58: UnpublishFeatures.<br>
Action ended 13:22:58: UnpublishFeatures. Return value 1.<br>
MSI (s) (E0:58) [13:22:58:986]: Doing action: StopServices<br>
MSI (s) (E0:58) [13:22:58:986]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:58: StopServices. Stopping services<br>
Action start 13:22:58: StopServices.<br>
Action ended 13:22:58: StopServices. Return value 1.<br>
MSI (s) (E0:58) [13:22:58:991]: Doing action: DeleteServices<br>
MSI (s) (E0:58) [13:22:58:991]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:58: DeleteServices. Deleting services<br>
Action start 13:22:58: DeleteServices.<br>
Action ended 13:22:58: DeleteServices. Return value 1.<br>
MSI (s) (E0:58) [13:22:58:994]: Doing action: RemoveFiles<br>
MSI (s) (E0:58) [13:22:58:994]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:58: RemoveFiles. Removing files<br>
Action start 13:22:58: RemoveFiles.<br>
Action ended 13:22:58: RemoveFiles. Return value 1.<br>
MSI (s) (E0:58) [13:22:58:997]: Doing action: InstallFiles<br>
MSI (s) (E0:58) [13:22:58:997]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:58: InstallFiles. Copying new files<br>
Action start 13:22:58: InstallFiles.<br>
InstallFiles: File: Copying new files,  Directory: ,  Size: <br>
MSI (s) (E0:58) [13:22:59:000]: Note: 1: 2205 2:  3: Patch <br>
MSI (s) (E0:58) [13:22:59:001]: Note: 1: 2228 2:  3: Patch 4: SELECT `Patch`.`File_`, `Patch`.`Header`, `Patch`.`Attributes`, `Patch`.`Sequence`, `Patch`.`StreamRef_` FROM `Patch` WHERE `Patch`.`File_` = ? AND `Patch`.`#_MsiActive`=? ORDER BY `Patch`.`Sequence` <br>
MSI (s) (E0:58) [13:22:59:001]: Note: 1: 2205 2:  3: MsiSFCBypass <br>
MSI (s) (E0:58) [13:22:59:001]: Note: 1: 2228 2:  3: MsiSFCBypass 4: SELECT `File_` FROM `MsiSFCBypass` WHERE `File_` = ? <br>
MSI (s) (E0:58) [13:22:59:001]: Note: 1: 2205 2:  3: MsiPatchHeaders <br>
MSI (s) (E0:58) [13:22:59:001]: Note: 1: 2228 2:  3: MsiPatchHeaders 4: SELECT `Header` FROM `MsiPatchHeaders` WHERE `StreamRef` = ? <br>
MSI (s) (E0:58) [13:22:59:001]: Note: 1: 2205 2:  3: PatchPackage <br>
MSI (s) (E0:58) [13:22:59:001]: Note: 1: 2205 2:  3: MsiPatchHeaders <br>
MSI (s) (E0:58) [13:22:59:001]: Note: 1: 2205 2:  3: PatchPackage <br>
Action ended 13:22:59: InstallFiles. Return value 1.<br>
MSI (s) (E0:58) [13:22:59:002]: Doing action: DuplicateFiles<br>
MSI (s) (E0:58) [13:22:59:002]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:59: DuplicateFiles. Creating duplicate files<br>
Action start 13:22:59: DuplicateFiles.<br>
Action ended 13:22:59: DuplicateFiles. Return value 1.<br>
MSI (s) (E0:58) [13:22:59:005]: Doing action: SchedXmlFile<br>
MSI (s) (E0:58) [13:22:59:005]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:59: SchedXmlFile. <br>
Action start 13:22:59: SchedXmlFile.<br>
MSI (s) (E0:CC) [13:22:59:142]: Invoking remote custom action. DLL: C:&#092;Windows&#092;Installer&#092;MSI43ED.tmp, Entrypoint: SchedXmlFile<br>
MSI (s) (E0:DC) [13:22:59:143]: Generating random cookie.<br>
MSI (s) (E0:DC) [13:22:59:146]: Created Custom Action Server with PID 4640 (0x1220).<br>
MSI (s) (E0:20) [13:22:59:284]: Running as a service.<br>
MSI (s) (E0:20) [13:22:59:286]: Hello, I&#39;m your 32bit Impersonated custom action server.<br>
SchedXmlFile:  Entering SchedXmlFile in C:&#092;Windows&#092;Installer&#092;MSI43ED.tmp, version 3.8.1128.0<br>
MSI (s) (E0&#33;58) [13:22:59:324]: PROPERTY CHANGE: Adding ExecXmlFile property. Its value is &#39;10C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;SchedulerService.exe.config30/configuration/log4net/appender/remoteAddress/@valuelogs2.papertrailapp.com30/configuration/log4net/appender/remotePort/@value218561110C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;SchedulerService.exe.config30/configuration/applicationSettings/OpenSoft.InkRouter.SchedulerService.Properties.Settings/setting/value<a class='tag-url' href='http://localhost:60830/api/SendAttempt&#39;' target='_blank'>http://localhost:60830/api/SendAttempt&#39;</a>.<br>
MSI (s) (E0&#33;58) [13:22:59:324]: Doing action: ExecXmlFile<br>
MSI (s) (E0&#33;58) [13:22:59:324]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:59: ExecXmlFile. <br>
Action start 13:22:59: ExecXmlFile.<br>
ExecXmlFile: <br>
Action ended 13:22:59: ExecXmlFile. Return value 1.<br>
Action ended 13:22:59: SchedXmlFile. Return value 1.<br>
MSI (s) (E0:58) [13:22:59:332]: Doing action: InstallServices<br>
MSI (s) (E0:58) [13:22:59:332]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:59: InstallServices. Installing new services<br>
Action start 13:22:59: InstallServices.<br>
InstallServices: Service: <br>
Action ended 13:22:59: InstallServices. Return value 1.<br>
MSI (s) (E0:58) [13:22:59:335]: Doing action: StartServices<br>
MSI (s) (E0:58) [13:22:59:335]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:59: StartServices. Starting services<br>
Action start 13:22:59: StartServices.<br>
StartServices: Service: Starting services<br>
Action ended 13:22:59: StartServices. Return value 1.<br>
MSI (s) (E0:58) [13:22:59:337]: Doing action: RegisterUser<br>
MSI (s) (E0:58) [13:22:59:337]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:59: RegisterUser. Registering user<br>
Action start 13:22:59: RegisterUser.<br>
Action ended 13:22:59: RegisterUser. Return value 1.<br>
MSI (s) (E0:58) [13:22:59:339]: Doing action: RegisterProduct<br>
MSI (s) (E0:58) [13:22:59:339]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:59: RegisterProduct. Registering product<br>
Action start 13:22:59: RegisterProduct.<br>
RegisterProduct: Registering product<br>
MSI (s) (E0:58) [13:22:59:344]: PROPERTY CHANGE: Adding ProductToBeRegistered property. Its value is &#39;1&#39;.<br>
Action ended 13:22:59: RegisterProduct. Return value 1.<br>
MSI (s) (E0:58) [13:22:59:345]: Doing action: PublishFeatures<br>
MSI (s) (E0:58) [13:22:59:345]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:59: PublishFeatures. Publishing Product Features<br>
Action start 13:22:59: PublishFeatures.<br>
PublishFeatures: Feature: Publishing Product Features<br>
Action ended 13:22:59: PublishFeatures. Return value 1.<br>
MSI (s) (E0:58) [13:22:59:348]: Doing action: PublishProduct<br>
MSI (s) (E0:58) [13:22:59:348]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:59: PublishProduct. Publishing product information<br>
Action start 13:22:59: PublishProduct.<br>
MSI (s) (E0:58) [13:22:59:351]: Note: 1: 2205 2:  3: Icon <br>
MSI (s) (E0:58) [13:22:59:351]: Note: 1: 2228 2:  3: Icon 4: SELECT `Name`, `Data` FROM `Icon` <br>
PublishProduct: <br>
Action ended 13:22:59: PublishProduct. Return value 1.<br>
MSI (s) (E0:58) [13:22:59:353]: Doing action: InstallFinalize<br>
MSI (s) (E0:58) [13:22:59:353]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:22:59: InstallFinalize. <br>
Action start 13:22:59: InstallFinalize.<br>
MSI (s) (E0:58) [13:22:59:355]: Running Script: C:&#092;Windows&#092;Installer&#092;MSI43BD.tmp<br>
MSI (s) (E0:58) [13:22:59:355]: PROPERTY CHANGE: Adding UpdateStarted property. Its value is &#39;1&#39;.<br>
MSI (s) (E0:58) [13:22:59:402]: Note: 1: 2265 2:  3: -2147287035 <br>
MSI (s) (E0:58) [13:22:59:402]: Machine policy value &#39;DisableRollback&#39; is 0<br>
MSI (s) (E0:58) [13:22:59:404]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE&#092;Software&#092;Microsoft&#092;Windows&#092;CurrentVersion&#092;Installer&#092;Rollback&#092;Scripts 3: 2 <br>
MSI (s) (E0:58) [13:22:59:405]: Executing op: Header(Signature=1397708873,Version=500,Timestamp=1158834912,LangId=1033,Platform=0,ScriptType=1,ScriptMajorVersion=21,ScriptMinorVersion=4,ScriptAttributes=1)<br>
MSI (s) (E0:58) [13:22:59:406]: Executing op: ProductInfo(ProductKey={6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D},ProductName=InkRouter SchedulerService,PackageName=SchedulerService.msi,Language=1033,Version=16777216,Assignment=1,ObsoleteArg=0,,,PackageCode={8B7F28DB-365B-442D-AEBC-FB2F0DAD3A99},,,InstanceType=0,LUASetting=0,RemoteURTInstalls=0,ProductDeploymentFlags=2)<br>
MSI (s) (E0:58) [13:22:59:406]: Executing op: DialogInfo(Type=0,Argument=1033)<br>
MSI (s) (E0:58) [13:22:59:407]: Executing op: DialogInfo(Type=1,Argument=InkRouter SchedulerService)<br>
MSI (s) (E0:58) [13:22:59:407]: Executing op: RollbackInfo(,RollbackAction=Rollback,RollbackDescription=Rolling back action:,RollbackTemplate=[1],CleanupAction=RollbackCleanup,CleanupDescription=Removing backup files,CleanupTemplate=File: [1])<br>
MSI (s) (E0:58) [13:22:59:407]: Executing op: SetBaseline(Baseline=0,)<br>
MSI (s) (E0:58) [13:22:59:407]: Executing op: SetBaseline(Baseline=1,)<br>
MSI (s) (E0:58) [13:22:59:407]: Executing op: ActionStart(Name=ProcessComponents,Description=Updating component registration,)<br>
Action 13:22:59: ProcessComponents. Updating component registration<br>
MSI (s) (E0:58) [13:22:59:409]: Executing op: ProgressTotal(Total=4,Type=1,ByteEquivalent=24000)<br>
MSI (s) (E0:58) [13:22:59:409]: Executing op: ComponentRegister(ComponentId={7FAA0D24-FA90-4DF1-8B94-83F257EDB7B1},KeyPath=C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;log4net.dll,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)<br>
1: {6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D} 2: {7FAA0D24-FA90-4DF1-8B94-83F257EDB7B1} 3: C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;log4net.dll <br>
MSI (s) (E0:58) [13:22:59:456]: WIN64DUALFOLDERS: Substitution in &#39;C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;log4net.dll&#39; folder had been blocked by the 1 mask argument (the folder pair&#39;s iSwapAttrib member = 0).<br>
MSI (s) (E0:58) [13:22:59:456]: Executing op: ComponentRegister(ComponentId={7FAA0D24-FA90-4DF1-8B94-83F257EDB7B3},KeyPath=C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;SchedulerService.exe.config,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)<br>
1: {6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D} 2: {7FAA0D24-FA90-4DF1-8B94-83F257EDB7B3} 3: C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;SchedulerService.exe.config <br>
MSI (s) (E0:58) [13:22:59:457]: WIN64DUALFOLDERS: Substitution in &#39;C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;SchedulerService.exe.config&#39; folder had been blocked by the 1 mask argument (the folder pair&#39;s iSwapAttrib member = 0).<br>
MSI (s) (E0:58) [13:22:59:458]: Executing op: ComponentRegister(ComponentId={7FAA0D24-FA90-4DF1-8B94-83F257EDB7B4},KeyPath=C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)<br>
1: {6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D} 2: {7FAA0D24-FA90-4DF1-8B94-83F257EDB7B4} 3: C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092; <br>
MSI (s) (E0:58) [13:22:59:458]: Executing op: ComponentRegister(ComponentId={7FAA0D24-FA90-4DF1-8B94-83F257EDB7B2},KeyPath=C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;SchedulerService.exe,State=3,,Disk=1,SharedDllRefCount=0,BinaryType=0)<br>
1: {6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D} 2: {7FAA0D24-FA90-4DF1-8B94-83F257EDB7B2} 3: C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;SchedulerService.exe <br>
MSI (s) (E0:58) [13:22:59:459]: WIN64DUALFOLDERS: Substitution in &#39;C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;SchedulerService.exe&#39; folder had been blocked by the 1 mask argument (the folder pair&#39;s iSwapAttrib member = 0).<br>
<br>
[/сode] <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-08-18T09:37:17+00:00">18.08.14, 09:37</time></span></span><br>
MSI (s) (E0:58) [13:22:59:459]: Executing op: ActionStart(Name=InstallFiles,Description=Copying new files,Template=File: [1],  Directory: [9],  Size: [6])<br>
Action 13:22:59: InstallFiles. Copying new files<br>
MSI (s) (E0:58) [13:22:59:461]: Executing op: ProgressTotal(Total=313202,Type=0,ByteEquivalent=1)<br>
MSI (s) (E0:58) [13:22:59:461]: Executing op: SetTargetFolder(Folder=C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;)<br>
MSI (s) (E0:58) [13:22:59:461]: Executing op: SetSourceFolder(Folder=1&#092;OpenSoft&#092;1xv4dely&#092;_b6mfcuq&#092;|OpenSoft&#092;InkRouter&#092;SchedulerService&#092;)<br>
MSI (s) (E0:58) [13:22:59:461]: Executing op: ChangeMedia(,MediaPrompt=Please insert the disk: ,MediaCabinet=cab1.cab,BytesPerTick=65536,CopierType=2,ModuleFileName=C:&#092;Windows&#092;Installer&#092;385961.msi,,,,,IsFirstPhysicalMedia=1)<br>
MSI (s) (E0:58) [13:22:59:461]: Executing op: FileCopy(SourceName=log4net.dll,SourceCabKey=log4net.dll,DestName=log4net.dll,Attributes=512,FileSize=301056,PerTick=65536,,VerifyMedia=1,,,,,CheckCRC=0,Version=1.2.13.0,Language=0,InstallMode=58982400,,,,,,,)<br>
MSI (s) (E0:58) [13:22:59:462]: File: C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;log4net.dll;	To be installed;	Won&#39;t patch;	No existing file<br>
MSI (s) (E0:58) [13:22:59:462]: Source for file &#39;log4net.dll&#39; is compressed<br>
InstallFiles: File: log4net.dll,  Directory: C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;,  Size: 301056<br>
MSI (s) (E0:58) [13:22:59:517]: Executing op: FileCopy(SourceName=xirtwh6a.exe|SchedulerService.exe,SourceCabKey=SchedulerService.exe,DestName=SchedulerService.exe,Attributes=512,FileSize=10240,PerTick=65536,,VerifyMedia=1,,,,,CheckCRC=0,Version=0.2.1.0,Language=0,InstallMode=58982400,,,,,,,)<br>
MSI (s) (E0:58) [13:22:59:517]: File: C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;SchedulerService.exe;	To be installed;	Won&#39;t patch;	No existing file<br>
MSI (s) (E0:58) [13:22:59:517]: Source for file &#39;SchedulerService.exe&#39; is compressed<br>
InstallFiles: File: SchedulerService.exe,  Directory: C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;,  Size: 10240<br>
MSI (s) (E0:58) [13:22:59:536]: Executing op: FileCopy(SourceName=bral0nmu.con|SchedulerService.exe.config,SourceCabKey=SchedulerService.exe.config,DestName=SchedulerService.exe.config,Attributes=512,FileSize=1906,PerTick=65536,,VerifyMedia=1,,,,,CheckCRC=0,,,InstallMode=58982400,HashOptions=0,HashPart1=-1979442967,HashPart2=-255047631,HashPart3=1265710042,HashPart4=2132556147,,)<br>
MSI (s) (E0:58) [13:22:59:536]: File: C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;SchedulerService.exe.config;	To be installed;	Won&#39;t patch;	No existing file<br>
MSI (s) (E0:58) [13:22:59:536]: Source for file &#39;SchedulerService.exe.config&#39; is compressed<br>
InstallFiles: File: SchedulerService.exe.config,  Directory: C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;,  Size: 1906<br>
MSI (s) (E0:58) [13:22:59:580]: Executing op: CacheSizeFlush(,)<br>
MSI (s) (E0:58) [13:22:59:580]: Executing op: ActionStart(Name=ExecXmlFile,,)<br>
Action 13:22:59: ExecXmlFile. <br>
MSI (s) (E0:58) [13:22:59:582]: Executing op: CustomActionSchedule(Action=ExecXmlFile,ActionType=3073,Source=BinaryData,Target=ExecXmlFile,CustomActionData=10C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;SchedulerService.exe.config30/configuration/log4net/appender/remoteAddress/@valuelogs2.papertrailapp.com30/configuration/log4net/appender/remotePort/@value218561110C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;SchedulerService.exe.config30/configuration/applicationSettings/OpenSoft.InkRouter.SchedulerService.Properties.Settings/setting/value<a class='tag-url' href='http://localhost:60830/api/SendAttempt' target='_blank'>http://localhost:60830/api/SendAttempt</a>)<br>
MSI (s) (E0:E8) [13:22:59:610]: Invoking remote custom action. DLL: C:&#092;Windows&#092;Installer&#092;MSI4631.tmp, Entrypoint: ExecXmlFile<br>
MSI (s) (E0:DC) [13:22:59:610]: Generating random cookie.<br>
MSI (s) (E0:DC) [13:22:59:613]: Created Custom Action Server with PID 2200 (0x898).<br>
MSI (s) (E0:9C) [13:22:59:641]: Running as a service.<br>
MSI (s) (E0:9C) [13:22:59:644]: Hello, I&#39;m your 32bit Elevated custom action server.<br>
ExecXmlFile:  Entering ExecXmlFile in C:&#092;Windows&#092;Installer&#092;MSI4631.tmp, version 3.8.1128.0<br>
ExecXmlFile:  Configuring Xml File: C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;SchedulerService.exe.config<br>
ExecXmlFile:  Configuring Xml File: C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;SchedulerService.exe.config<br>
MSI (s) (E0:58) [13:22:59:817]: Executing op: ActionStart(Name=InstallServices,Description=Installing new services,Template=Service: [2])<br>
Action 13:22:59: InstallServices. Installing new services<br>
MSI (s) (E0:58) [13:22:59:819]: Executing op: ProgressTotal(Total=1,Type=1,ByteEquivalent=1300000)<br>
MSI (s) (E0:58) [13:22:59:819]: Executing op: ServiceInstall(Name=InkRouter.SchedulerService,DisplayName=InkRouter SchedulerService,ImagePath=&quot;C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;SchedulerService.exe&quot;,ServiceType=16,StartType=2,ErrorControl=32769,,Dependencies=[~],,StartName=LocalSystem,Password=**********,Description=Monitoring service for InkRouter,,)<br>
InstallServices: Service: <br>
MSI (s) (E0:58) [13:23:00:118]: Executing op: ActionStart(Name=StartServices,Description=Starting services,Template=Service: [1])<br>
Action 13:23:00: StartServices. Starting services<br>
MSI (s) (E0:58) [13:23:00:121]: Executing op: ProgressTotal(Total=1,Type=1,ByteEquivalent=1300000)<br>
MSI (s) (E0:58) [13:23:00:122]: Executing op: ServiceControl(,Name=InkRouter.SchedulerService,Action=1,,)<br>
StartServices: Service: InkRouter SchedulerService<br>
MSI (s) (E0:58) [13:23:01:995]: Executing op: ActionStart(Name=RegisterProduct,Description=Registering product,Template=[1])<br>
Action 13:23:01: RegisterProduct. Registering product<br>
MSI (s) (E0:58) [13:23:01:996]: Executing op: ChangeMedia(,MediaPrompt=Please insert the disk: ,MediaCabinet=cab1.cab,BytesPerTick=0,CopierType=2,ModuleFileName=C:&#092;Windows&#092;Installer&#092;385961.msi,,,,,IsFirstPhysicalMedia=1)<br>
MSI (s) (E0:58) [13:23:01:996]: Executing op: DatabaseCopy(DatabasePath=C:&#092;Windows&#092;Installer&#092;385961.msi,ProductCode={6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D},,,)<br>
MSI (s) (E0:58) [13:23:01:997]: Note: 1: 1402 2: UNKNOWN&#092;Products&#092;BB3D0AA69CF9DC846AE0BAEE26D91DD0&#092;InstallProperties 3: 2 <br>
MSI (s) (E0:58) [13:23:01:998]: File will have security applied from OpCode.<br>
MSI (s) (E0:58) [13:23:02:026]: Executing op: ProductRegister(UpgradeCode={70D91CCB-A39B-4230-A08C-1019C9B41589},VersionString=1.0.0.0,,,,InstallSource=C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;,Publisher=OpenSoft,,,,,,,,,,,,EstimatedSize=292,,,,)<br>
RegisterProduct: {6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}<br>
MSI (s) (E0:58) [13:23:02:069]: Executing op: ProductCPDisplayInfoRegister()<br>
MSI (s) (E0:58) [13:23:02:070]: Executing op: ActionStart(Name=PublishFeatures,Description=Publishing Product Features,Template=Feature: [1])<br>
Action 13:23:02: PublishFeatures. Publishing Product Features<br>
MSI (s) (E0:58) [13:23:02:072]: Executing op: FeaturePublish(Feature=ProductFeature,,Absent=2,Component=)z_%QH*H&#39;Aj36yv&#39;-)-b)z_%QH*H&#39;Aj36yv)Deib)z_%QH*H&#39;Aj36yv*M%*c)z_%QH*H&#39;Aj36yv(7IMb)<br>
PublishFeatures: Feature: ProductFeature<br>
MSI (s) (E0:58) [13:23:02:074]: Executing op: ActionStart(Name=PublishProduct,Description=Publishing product information,)<br>
Action 13:23:02: PublishProduct. Publishing product information<br>
MSI (s) (E0:58) [13:23:02:076]: Executing op: CleanupConfigData()<br>
MSI (s) (E0:58) [13:23:02:076]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE&#092;Software&#092;Microsoft&#092;Windows&#092;CurrentVersion&#092;Installer&#092;UserData&#092;S-1-5-18&#092;Products&#092;BB3D0AA69CF9DC846AE0BAEE26D91DD0&#092;Patches 3: 2 <br>
MSI (s) (E0:58) [13:23:02:076]: Executing op: RegisterPatchOrder(Continue=0,SequenceType=1,Remove=0)<br>
MSI (s) (E0:58) [13:23:02:076]: Note: 1: 1402 2: UNKNOWN&#092;Products&#092;BB3D0AA69CF9DC846AE0BAEE26D91DD0&#092;Patches 3: 2 <br>
MSI (s) (E0:58) [13:23:02:077]: Executing op: ProductPublish(PackageKey={8B7F28DB-365B-442D-AEBC-FB2F0DAD3A99})<br>
1: {6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D} <br>
MSI (s) (E0:58) [13:23:02:078]: Note: 1: 1402 2: UNKNOWN&#092;Installer&#092;Products&#092;BB3D0AA69CF9DC846AE0BAEE26D91DD0 3: 2 <br>
MSI (s) (E0:58) [13:23:02:078]: Note: 1: 1402 2: UNKNOWN&#092;Installer&#092;Products&#092;BB3D0AA69CF9DC846AE0BAEE26D91DD0 3: 2 <br>
MSI (s) (E0:58) [13:23:02:078]: Note: 1: 1402 2: UNKNOWN&#092;Installer&#092;Products&#092;BB3D0AA69CF9DC846AE0BAEE26D91DD0 3: 2 <br>
MSI (s) (E0:58) [13:23:02:078]: Note: 1: 1402 2: UNKNOWN&#092;Installer&#092;Products&#092;BB3D0AA69CF9DC846AE0BAEE26D91DD0 3: 2 <br>
MSI (s) (E0:58) [13:23:02:078]: Note: 1: 1402 2: UNKNOWN&#092;Installer&#092;Products&#092;BB3D0AA69CF9DC846AE0BAEE26D91DD0 3: 2 <br>
MSI (s) (E0:58) [13:23:02:078]: Note: 1: 1402 2: UNKNOWN&#092;Installer&#092;Products&#092;BB3D0AA69CF9DC846AE0BAEE26D91DD0 3: 2 <br>
MSI (s) (E0:58) [13:23:02:078]: Note: 1: 1402 2: UNKNOWN&#092;Installer&#092;Products&#092;BB3D0AA69CF9DC846AE0BAEE26D91DD0 3: 2 <br>
MSI (s) (E0:58) [13:23:02:078]: Note: 1: 1402 2: UNKNOWN&#092;Installer&#092;Products&#092;BB3D0AA69CF9DC846AE0BAEE26D91DD0 3: 2 <br>
MSI (s) (E0:58) [13:23:02:078]: Note: 1: 1402 2: UNKNOWN&#092;Installer&#092;Products&#092;BB3D0AA69CF9DC846AE0BAEE26D91DD0 3: 2 <br>
MSI (s) (E0:58) [13:23:02:078]: Note: 1: 1402 2: UNKNOWN&#092;Installer&#092;Products&#092;BB3D0AA69CF9DC846AE0BAEE26D91DD0 3: 2 <br>
MSI (s) (E0:58) [13:23:02:078]: Note: 1: 1402 2: UNKNOWN&#092;Installer&#092;Products&#092;BB3D0AA69CF9DC846AE0BAEE26D91DD0 3: 2 <br>
MSI (s) (E0:58) [13:23:02:079]: Executing op: UpgradeCodePublish(UpgradeCode={70D91CCB-A39B-4230-A08C-1019C9B41589})<br>
MSI (s) (E0:58) [13:23:02:080]: Executing op: SourceListPublish(,,,,NumberOfDisks=1)<br>
MSI (s) (E0:58) [13:23:02:080]: Note: 1: 1402 2: UNKNOWN&#092;Installer&#092;Products&#092;BB3D0AA69CF9DC846AE0BAEE26D91DD0&#092;SourceList 3: 2 <br>
MSI (s) (E0:58) [13:23:02:099]: Executing op: ProductPublishClient(,,)<br>
MSI (s) (E0:58) [13:23:02:100]: Executing op: SourceListRegisterLastUsed(SourceProduct={6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D},LastUsedSource=C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;)<br>
MSI (s) (E0:58) [13:23:02:100]: Entering CMsiConfigurationManager::SetLastUsedSource.<br>
MSI (s) (E0:58) [13:23:02:100]: Specifed source is already in a list.<br>
MSI (s) (E0:58) [13:23:02:100]: User policy value &#39;SearchOrder&#39; is &#39;nmu&#39;<br>
MSI (s) (E0:58) [13:23:02:100]: Adding new sources is allowed.<br>
MSI (s) (E0:58) [13:23:02:100]: Set LastUsedSource to: C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;.<br>
MSI (s) (E0:58) [13:23:02:100]: Set LastUsedType to: n.<br>
MSI (s) (E0:58) [13:23:02:100]: Set LastUsedIndex to: 1.<br>
MSI (s) (E0:58) [13:23:02:101]: Executing op: End(Checksum=0,ProgressTotalHDWord=0,ProgressTotalLDWord=3453570)<br>
MSI (s) (E0:58) [13:23:02:126]: Note: 1: 2265 2:  3: -2147287035 <br>
MSI (s) (E0:58) [13:23:02:126]: User policy value &#39;DisableRollback&#39; is 0<br>
MSI (s) (E0:58) [13:23:02:126]: Machine policy value &#39;DisableRollback&#39; is 0<br>
MSI (s) (E0:58) [13:23:02:136]: Note: 1: 2265 2:  3: -2147287035 <br>
Action 13:23:02: RollbackCleanup. Removing backup files<br>
MSI (s) (E0:58) [13:23:02:148]: Calling SRSetRestorePoint API. dwRestorePtType: 0, dwEventType: 103, llSequenceNumber: 44, szDescription: &quot;&quot;.<br>
MSI (s) (E0:58) [13:23:02:149]: The call to SRSetRestorePoint API succeeded. Returned status: 0.<br>
MSI (s) (E0:58) [13:23:02:149]: Unlocking Server<br>
MSI (s) (E0:58) [13:23:02:208]: PROPERTY CHANGE: Deleting UpdateStarted property. Its current value is &#39;1&#39;.<br>
Action ended 13:23:02: InstallFinalize. Return value 1.<br>
Action ended 13:23:02: INSTALL. Return value 1.<br>
Property(S): UpgradeCode = {70D91CCB-A39B-4230-A08C-1019C9B41589}<br>
Property(S): INSTALLLOCATION = C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;<br>
Property(S): WixUIRMOption = UseRM<br>
Property(S): REMOTE_PORT = 2185611<br>
Property(S): REMOTE_ADDRESS = logs2.papertrailapp.com<br>
Property(S): URL_VALUE = <a class='tag-url' href='http://localhost:60830/api/SendAttempt' target='_blank'>http://localhost:60830/api/SendAttempt</a><br>
Property(S): ALLUSERS = 1<br>
Property(S): ExecXmlFile = 10C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;SchedulerService.exe.config30/configuration/log4net/appender/remoteAddress/@valuelogs2.papertrailapp.com30/configuration/log4net/appender/remotePort/@value218561110C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;SchedulerService.exe.config30/configuration/applicationSettings/OpenSoft.InkRouter.SchedulerService.Properties.Settings/setting/value<a class='tag-url' href='http://localhost:60830/api/SendAttempt' target='_blank'>http://localhost:60830/api/SendAttempt</a><br>
Property(S): InkRouter = C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;<br>
Property(S): OpenSoft = C:&#092;Program Files (x86)&#092;OpenSoft&#092;<br>
Property(S): ProgramFilesFolder = C:&#092;Program Files (x86)&#092;<br>
Property(S): TARGETDIR = D:&#092;<br>
Property(S): SourceDir = C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;<br>
Property(S): VersionNT = 603<br>
Property(S): WIXUI_INSTALLDIR = INSTALLLOCATION<br>
Property(S): Manufacturer = OpenSoft<br>
Property(S): ProductCode = {6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}<br>
Property(S): ProductLanguage = 1033<br>
Property(S): ProductName = InkRouter SchedulerService<br>
Property(S): ProductVersion = 1.0.0.0<br>
Property(S): DefaultUIFont = WixUI_Font_Normal<br>
Property(S): ErrorDialog = ErrorDlg<br>
Property(S): SecureCustomProperties = WIX_DOWNGRADE_DETECTED;WIX_UPGRADE_DETECTED<br>
Property(S): MsiLogFileLocation = C:&#092;Users&#092;TATYAN~1.DRU&#092;AppData&#092;Local&#092;Temp&#092;MSI9243c.LOG<br>
Property(S): PackageCode = {8B7F28DB-365B-442D-AEBC-FB2F0DAD3A99}<br>
Property(S): ProductState = -1<br>
Property(S): PackagecodeChanging = 1<br>
Property(S): CURRENTDIRECTORY = C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug<br>
Property(S): CLIENTUILEVEL = 0<br>
Property(S): CLIENTPROCESSID = 1556<br>
Property(S): USERNAME = adm<br>
Property(S): VersionDatabase = 200<br>
Property(S): ACTION = INSTALL<br>
Property(S): EXECUTEACTION = INSTALL<br>
Property(S): ROOTDRIVE = D:&#092;<br>
Property(S): INSTALLLEVEL = 1<br>
Property(S): SECONDSEQUENCE = 1<br>
Property(S): ADDLOCAL = ProductFeature<br>
Property(S): MsiSystemRebootPending = 1<br>
Property(S): VersionMsi = 5.00<br>
Property(S): VersionNT64 = 603<br>
Property(S): WindowsBuild = 9600<br>
Property(S): ServicePackLevel = 0<br>
Property(S): ServicePackLevelMinor = 0<br>
Property(S): MsiNTProductType = 1<br>
Property(S): WindowsFolder = C:&#092;Windows&#092;<br>
Property(S): WindowsVolume = C:&#092;<br>
Property(S): System64Folder = C:&#092;Windows&#092;system32&#092;<br>
Property(S): SystemFolder = C:&#092;Windows&#092;SysWOW64&#092;<br>
Property(S): RemoteAdminTS = 1<br>
Property(S): TempFolder = C:&#092;Users&#092;TATYAN~1.DRU&#092;AppData&#092;Local&#092;Temp&#092;<br>
Property(S): CommonFilesFolder = C:&#092;Program Files (x86)&#092;Common Files&#092;<br>
Property(S): ProgramFiles64Folder = C:&#092;Program Files&#092;<br>
Property(S): CommonFiles64Folder = C:&#092;Program Files&#092;Common Files&#092;<br>
Property(S): AppDataFolder = C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;<br>
Property(S): FavoritesFolder = C:&#092;Users&#092;tatyana.druzenko&#092;Favorites&#092;<br>
Property(S): NetHoodFolder = C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Network Shortcuts&#092;<br>
Property(S): PersonalFolder = C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;<br>
Property(S): PrintHoodFolder = C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Printer Shortcuts&#092;<br>
Property(S): RecentFolder = C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Recent&#092;<br>
Property(S): SendToFolder = C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;SendTo&#092;<br>
Property(S): TemplateFolder = C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Templates&#092;<br>
Property(S): CommonAppDataFolder = C:&#092;ProgramData&#092;<br>
Property(S): LocalAppDataFolder = C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Local&#092;<br>
Property(S): MyPicturesFolder = C:&#092;Users&#092;tatyana.druzenko&#092;Pictures&#092;<br>
Property(S): AdminToolsFolder = C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Start Menu&#092;Programs&#092;Administrative Tools&#092;<br>
Property(S): StartupFolder = C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Start Menu&#092;Programs&#092;Startup&#092;<br>
Property(S): ProgramMenuFolder = C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Start Menu&#092;Programs&#092;<br>
Property(S): StartMenuFolder = C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Start Menu&#092;<br>
Property(S): DesktopFolder = C:&#092;Users&#092;Public&#092;Desktop&#092;<br>
Property(S): FontsFolder = C:&#092;Windows&#092;Fonts&#092;<br>
Property(S): GPTSupport = 1<br>
Property(S): OLEAdvtSupport = 1<br>
Property(S): ShellAdvtSupport = 1<br>
Property(S): MsiAMD64 = 6<br>
Property(S): Msix64 = 6<br>
Property(S): Intel = 6<br>
Property(S): PhysicalMemory = 4095<br>
Property(S): VirtualMemory = 1258<br>
Property(S): LogonUser = tatyana.druzenko<br>
Property(S): UserSID = S-1-5-21-370581192-3222484191-337209271-9187<br>
Property(S): UserLanguageID = 1049<br>
Property(S): ComputerName = RU-DEV24<br>
Property(S): SystemLanguageID = 1049<br>
Property(S): ScreenX = 1024<br>
Property(S): ScreenY = 768<br>
Property(S): CaptionHeight = 23<br>
Property(S): BorderTop = 1<br>
Property(S): BorderSide = 1<br>
Property(S): TextHeight = 16<br>
Property(S): TextInternalLeading = 3<br>
Property(S): ColorBits = 32<br>
Property(S): TTCSupport = 1<br>
Property(S): Time = 13:23:02<br>
Property(S): Date = 18.08.2014<br>
Property(S): MsiNetAssemblySupport = 4.0.30319.33440<br>
Property(S): MsiWin32AssemblySupport = 6.3.9600.16384<br>
Property(S): RedirectedDllSupport = 2<br>
Property(S): AdminUser = 1<br>
Property(S): MsiRunningElevated = 1<br>
Property(S): Privileged = 1<br>
Property(S): DATABASE = C:&#092;Windows&#092;Installer&#092;385961.msi<br>
Property(S): OriginalDatabase = C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;SchedulerService.msi<br>
Property(S): UILevel = 5<br>
Property(S): Preselected = 1<br>
Property(S): CostingComplete = 1<br>
Property(S): OutOfDiskSpace = 0<br>
Property(S): OutOfNoRbDiskSpace = 0<br>
Property(S): PrimaryVolumeSpaceAvailable = 0<br>
Property(S): PrimaryVolumeSpaceRequired = 0<br>
Property(S): PrimaryVolumeSpaceRemaining = 0<br>
Property(S): SOURCEDIR = C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;<br>
Property(S): SourcedirProduct = {6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}<br>
Property(S): ProductToBeRegistered = 1<br>
MSI (s) (E0:58) [13:23:02:275]: MainEngineThread is returning 0<br>
MSI (s) (E0:58) [13:23:02:282]: RESTART MANAGER: Session closed.<br>
MSI (s) (E0:58) [13:23:02:305]: User policy value &#39;DisableRollback&#39; is 0<br>
MSI (s) (E0:58) [13:23:02:305]: Machine policy value &#39;DisableRollback&#39; is 0<br>
MSI (s) (E0:58) [13:23:02:305]: Incrementing counter to disable shutdown. Counter after increment: 0<br>
MSI (s) (E0:58) [13:23:02:305]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE&#092;Software&#092;Microsoft&#092;Windows&#092;CurrentVersion&#092;Installer&#092;Rollback&#092;Scripts 3: 2 <br>
MSI (s) (E0:58) [13:23:02:313]: Note: 1: 2265 2:  3: -2147287035 <br>
MSI (s) (E0:58) [13:23:02:314]: Note: 1: 1402 2: HKEY_LOCAL_MACHINE&#092;Software&#092;Microsoft&#092;Windows&#092;CurrentVersion&#092;Installer&#092;Rollback&#092;Scripts 3: 2 <br>
MSI (s) (E0:58) [13:23:02:316]: Decrementing counter to disable shutdown. If counter &gt;= 0, shutdown will be denied.  Counter after decrement: -1<br>
MSI (s) (E0:58) [13:23:02:317]: Destroying RemoteAPI object.<br>
MSI (s) (E0:DC) [13:23:02:317]: Custom Action Manager thread ending.<br>
MSI &copy; (14:5C) [13:23:02:320]: Back from server. Return value: 0<br>
MSI &copy; (14:5C) [13:23:02:320]: Decrementing counter to disable shutdown. If counter &gt;= 0, shutdown will be denied.  Counter after decrement: -1<br>
Action ended 13:23:02: ExecuteAction. Return value 1.<br>
ng SECONDSEQUENCE property. Its current value is &#39;1&#39;.<br>
MSI &copy; (14:5C) [13:23:02:321]: Doing action: ExitDialog<br>
MSI &copy; (14:5C) [13:23:02:321]: Note: 1: 2205 2:  3: ActionText <br>
Action 13:23:02: ExitDialog. <br>
Action start 13:23:02: ExitDialog.<br>
Action 13:23:02: ExitDialog. Dialog created<br>
Action ended 13:23:05: ExitDialog. Return value 1.<br>
Action ended 13:23:05: INSTALL. Return value 1.<br>
Property&copy;: UpgradeCode = {70D91CCB-A39B-4230-A08C-1019C9B41589}<br>
Property&copy;: INSTALLLOCATION = C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;SchedulerService&#092;<br>
Property&copy;: WixUIRMOption = UseRM<br>
Property&copy;: REMOTE_PORT = 2185611<br>
Property&copy;: REMOTE_ADDRESS = logs2.papertrailapp.com<br>
Property&copy;: URL_VALUE = <a class='tag-url' href='http://localhost:60830/api/SendAttempt' target='_blank'>http://localhost:60830/api/SendAttempt</a><br>
Property&copy;: ALLUSERS = 1<br>
Property&copy;: InkRouter = C:&#092;Program Files (x86)&#092;OpenSoft&#092;InkRouter&#092;<br>
Property&copy;: OpenSoft = C:&#092;Program Files (x86)&#092;OpenSoft&#092;<br>
Property&copy;: ProgramFilesFolder = C:&#092;Program Files (x86)&#092;<br>
Property&copy;: TARGETDIR = D:&#092;<br>
Property&copy;: SourceDir = C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;<br>
Property&copy;: VersionNT = 603<br>
Property&copy;: WIXUI_INSTALLDIR = INSTALLLOCATION <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-08-18T09:37:50+00:00">18.08.14, 09:37</time></span></span><br>
Property&copy;: Manufacturer = OpenSoft<br>
Property&copy;: ProductCode = {6AA0D3BB-9FC9-48CD-A60E-ABEE629DD10D}<br>
Property&copy;: ProductLanguage = 1033<br>
Property&copy;: ProductName = InkRouter SchedulerService<br>
Property&copy;: ProductVersion = 1.0.0.0<br>
Property&copy;: DefaultUIFont = WixUI_Font_Normal<br>
Property&copy;: ErrorDialog = ErrorDlg<br>
Property&copy;: SecureCustomProperties = WIX_DOWNGRADE_DETECTED;WIX_UPGRADE_DETECTED<br>
Property&copy;: MsiLogFileLocation = C:&#092;Users&#092;TATYAN~1.DRU&#092;AppData&#092;Local&#092;Temp&#092;MSI9243c.LOG<br>
Property&copy;: PackageCode = {8B7F28DB-365B-442D-AEBC-FB2F0DAD3A99}<br>
Property&copy;: ProductState = -1<br>
Property&copy;: PackagecodeChanging = 1<br>
Property&copy;: CURRENTDIRECTORY = C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug<br>
Property&copy;: CLIENTUILEVEL = 0<br>
Property&copy;: CLIENTPROCESSID = 1556<br>
Property&copy;: MsiSystemRebootPending = 1<br>
Property&copy;: VersionDatabase = 200<br>
Property&copy;: VersionMsi = 5.00<br>
Property&copy;: VersionNT64 = 603<br>
Property&copy;: WindowsBuild = 9600<br>
Property&copy;: ServicePackLevel = 0<br>
Property&copy;: ServicePackLevelMinor = 0<br>
Property&copy;: MsiNTProductType = 1<br>
Property&copy;: WindowsFolder = C:&#092;Windows&#092;<br>
Property&copy;: WindowsVolume = C:&#092;<br>
Property&copy;: System64Folder = C:&#092;Windows&#092;system32&#092;<br>
Property&copy;: SystemFolder = C:&#092;Windows&#092;SysWOW64&#092;<br>
Property&copy;: RemoteAdminTS = 1<br>
Property&copy;: TempFolder = C:&#092;Users&#092;TATYAN~1.DRU&#092;AppData&#092;Local&#092;Temp&#092;<br>
Property&copy;: CommonFilesFolder = C:&#092;Program Files (x86)&#092;Common Files&#092;<br>
Property&copy;: ProgramFiles64Folder = C:&#092;Program Files&#092;<br>
Property&copy;: CommonFiles64Folder = C:&#092;Program Files&#092;Common Files&#092;<br>
Property&copy;: AppDataFolder = C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;<br>
Property&copy;: FavoritesFolder = C:&#092;Users&#092;tatyana.druzenko&#092;Favorites&#092;<br>
Property&copy;: NetHoodFolder = C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Network Shortcuts&#092;<br>
Property&copy;: PersonalFolder = C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;<br>
Property&copy;: PrintHoodFolder = C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Printer Shortcuts&#092;<br>
Property&copy;: RecentFolder = C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;Recent&#092;<br>
Property&copy;: SendToFolder = C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Roaming&#092;Microsoft&#092;Windows&#092;SendTo&#092;<br>
Property&copy;: TemplateFolder = C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Templates&#092;<br>
Property&copy;: CommonAppDataFolder = C:&#092;ProgramData&#092;<br>
Property&copy;: LocalAppDataFolder = C:&#092;Users&#092;tatyana.druzenko&#092;AppData&#092;Local&#092;<br>
Property&copy;: MyPicturesFolder = C:&#092;Users&#092;tatyana.druzenko&#092;Pictures&#092;<br>
Property&copy;: AdminToolsFolder = C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Start Menu&#092;Programs&#092;Administrative Tools&#092;<br>
Property&copy;: StartupFolder = C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Start Menu&#092;Programs&#092;Startup&#092;<br>
Property&copy;: ProgramMenuFolder = C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Start Menu&#092;Programs&#092;<br>
Property&copy;: StartMenuFolder = C:&#092;ProgramData&#092;Microsoft&#092;Windows&#092;Start Menu&#092;<br>
Property&copy;: DesktopFolder = C:&#092;Users&#092;Public&#092;Desktop&#092;<br>
Property&copy;: FontsFolder = C:&#092;Windows&#092;Fonts&#092;<br>
Property&copy;: GPTSupport = 1<br>
Property&copy;: OLEAdvtSupport = 1<br>
Property&copy;: ShellAdvtSupport = 1<br>
Property&copy;: MsiAMD64 = 6<br>
Property&copy;: Msix64 = 6<br>
Property&copy;: Intel = 6<br>
Property&copy;: PhysicalMemory = 4095<br>
Property&copy;: VirtualMemory = 1261<br>
Property&copy;: LogonUser = tatyana.druzenko<br>
Property&copy;: UserSID = S-1-5-21-370581192-3222484191-337209271-9187<br>
Property&copy;: UserLanguageID = 1049<br>
Property&copy;: ComputerName = RU-DEV24<br>
Property&copy;: SystemLanguageID = 1049<br>
Property&copy;: ScreenX = 1280<br>
Property&copy;: ScreenY = 1024<br>
Property&copy;: CaptionHeight = 23<br>
Property&copy;: BorderTop = 1<br>
Property&copy;: BorderSide = 1<br>
Property&copy;: TextHeight = 16<br>
Property&copy;: TextInternalLeading = 3<br>
Property&copy;: ColorBits = 32<br>
Property&copy;: TTCSupport = 1<br>
Property&copy;: Time = 13:23:05<br>
Property&copy;: Date = 18.08.2014<br>
Property&copy;: MsiNetAssemblySupport = 4.0.30319.33440<br>
Property&copy;: MsiWin32AssemblySupport = 6.3.9600.16384<br>
Property&copy;: RedirectedDllSupport = 2<br>
Property&copy;: AdminUser = 1<br>
Property&copy;: Privileged = 1<br>
Property&copy;: USERNAME = adm<br>
Property&copy;: DATABASE = C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;SchedulerService.msi<br>
Property&copy;: OriginalDatabase = C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;SchedulerService.msi <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-08-18T09:38:46+00:00">18.08.14, 09:38</time></span></span><br>
Property&copy;: SOURCEDIR = C:&#092;Users&#092;tatyana.druzenko&#092;Documents&#092;installer&#092;installer&#092;OpenSoft.InkRouter.SchedulerService.Installer&#092;bin&#092;Debug&#092;<br>
Property&copy;: VersionHandler = 5.00<br>
Property&copy;: UILevel = 5<br>
Property&copy;: ACTION = INSTALL<br>
Property&copy;: EXECUTEACTION = INSTALL<br>
Property&copy;: ROOTDRIVE = D:&#092;<br>
Property&copy;: CostingComplete = 1<br>
Property&copy;: OutOfDiskSpace = 0<br>
Property&copy;: OutOfNoRbDiskSpace = 0<br>
Property&copy;: PrimaryVolumeSpaceAvailable = 0<br>
Property&copy;: PrimaryVolumeSpaceRequired = 0<br>
Property&copy;: PrimaryVolumeSpaceRemaining = 0<br>
Property&copy;: INSTALLLEVEL = 1<br>
=== Logging stopped: 18.08.2014  13:23:05 ===<br>
MSI &copy; (14:5C) [13:23:05:302]: Note: 1: 1707 <br>
MSI &copy; (14:5C) [13:23:05:302]: Product: InkRouter SchedulerService -- Installation completed successfully.<br>
<br>
MSI &copy; (14:5C) [13:23:05:303]: Windows Installer installed the product. Product Name: InkRouter SchedulerService. Product Version: 1.0.0.0. Product Language: 1033. Manufacturer: OpenSoft. Installation success or error status: 0.<br>
<br>
MSI &copy; (14:5C) [13:23:05:305]: Grabbed execution mutex.<br>
MSI &copy; (14:5C) [13:23:05:305]: Cleaning up uninstalled install packages, if any exist<br>
MSI &copy; (14:5C) [13:23:05:312]: MainEngineThread is returning 0 <br>
<br>
<span class="tag-color tag-color-named" data-value="mergepost" style="color: mergepost"><span class='tag-size' data-value='7' style='font-size:7pt;'>Добавлено <time class="tag-mergetime" datetime="2014-08-18T09:39:37+00:00">18.08.14, 09:39</time></span></span><br>
Посмотрите, пожалуйста, вроде бы это то, что Вы просили]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514269</guid>
        <pubDate>Mon, 18 Aug 2014 09:17:59 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514269</link>
        <description><![CDATA[Fester: то, что в после #4 - это ключ в реесте]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514261</guid>
        <pubDate>Mon, 18 Aug 2014 08:59:11 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514261</link>
        <description><![CDATA[Tatyana Druzenko: А данные команды нужно прописывать в командной строке?]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514258</guid>
        <pubDate>Mon, 18 Aug 2014 08:50:01 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514258</link>
        <description><![CDATA[Fester: <a class='tag-url' href='http://forum.sources.ru/index.php?showtopic=233653&view=findpost&p=1934869' target='_blank'>Логирование (сообщение #1934869)</a><br>
 <br>
ну и потом сматришь msi*.log в папке %temp%]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514248</guid>
        <pubDate>Mon, 18 Aug 2014 08:31:50 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514248</link>
        <description><![CDATA[Tatyana Druzenko: А как просмотреть логи? Подскажите, пожалуйста.]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514203</guid>
        <pubDate>Mon, 18 Aug 2014 06:35:16 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3514203</link>
        <description><![CDATA[Fester: что пишется в логах?]]></description>
        <author>Fester</author>
        <category>Инсталляторы</category>
      </item>
	
      <item>
        <guid isPermaLink='true'>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3513409</guid>
        <pubDate>Fri, 15 Aug 2014 07:11:12 +0000</pubDate>
        <title>WIX Condition</title>
        <link>https://forum.sources.ru/index.php?showtopic=393319&amp;view=findpost&amp;p=3513409</link>
        <description><![CDATA[Tatyana Druzenko: Условие не срабатывает :( <br>
Написала вот так<br>
<br>
&lt;Property Id=&quot;PRODUCT_V3_INSTALLED&quot;&gt;<br>
&lt;ProductSearch Minimum=&quot;3.0.0&quot; IncludeMinimum=&quot;yes&quot; Maximum=&quot;4.0.0&quot; IncludeMaximum=&quot;no&quot; UpgradeCode=&quot;&#036;(var.UpgradeCode)&quot; /&gt;<br>
&lt;/Property&gt;<br>
<br>
<br>
&lt;Component Id=&quot;SchedulerService.exe.config&quot; Guid=&quot;7FAA0D24-FA90-4DF1-8B94-83F257EDB7B3&quot;&gt;<br>
&lt;Condition&gt;&lt;&#33;[CDATA[NOT Installed OR NOT PRODUCT_V3_INSTALLED]]&gt;&lt;/Condition&gt;<br>
&lt;File Id=&quot;SchedulerService.exe.config&quot; Source=&quot;&#036;(var.OpenSoft.InkRouter.SchedulerService.TargetDir)SchedulerService.exe.config&quot; Name=&quot;SchedulerService.exe.config&quot;/&gt;<br>
&lt;/Component&gt;<br>
<br>
<br>
Но данный файл не обновляется :(<br>
Помогите, пожалуйста]]></description>
        <author>Tatyana Druzenko</author>
        <category>Инсталляторы</category>
      </item>
	
      </channel>
      </rss>
	