Wix - Каталог находится в профиле пользователя, но не указан в таблице RemoveFile

Я хочу создать подпапку в меню «Пуск», в моем случае PMFCompanyFolder уже существует и содержит ссылки, и я не хочу удалять при удалении моего продукта .

Поэтому я не нажимаю свойство RemoveFolder и получаю:

ICE64: The directory PMFCompanyFolder is in the user profile but is not listed in the RemoveFile table.

<Directory Id="TARGETDIR" Name="SourceDir">
  <Directory Id="ProgramMenuFolder">
    <Directory Id="PMFCompanyFolder" Name="MyCompany">
      <Directory Id="PMFProductFolder" Name="MyProduct"/>
    </Directory>
  </Directory>
</Directory>

<DirectoryRef Id="PMFProductFolder">
  <Component Id="PMFProductFolderComponent" Guid="A13A7784-4C82-4CBE-9018-CEC6F266743B">
    <RemoveFolder Id="null" On="uninstall"/>
    <RegistryValue Root="HKCU" Key="Software\Microsoft\MyCompany\MyProduct" Name="installed" Type="integer" Value="1" KeyPath="yes"/>
  </Component>
</DirectoryRef>

<Feature Id="ProductFeature" Title="" Level="1">
  <ComponentRef Id="PMFProductFolderComponent"/>
</Feature>
12
задан Arnaud F. 27 February 2012 в 14:59
поделиться