特定组件的“ICE38:组件安装到用户配置文件”错误

时间:2012-10-12 13:37:57

标签: wix windows-installer wix3.6

我正在尝试使用每台计算机和x64架构设置在WiX 3.6中编写Windows Installer脚本。我有以下项目结构(缩短):

<Directory Id="ProgramFiles64Folder" Name="PFiles">
    <Directory Id="APPLICATIONFOLDER" Name="My Company">
      <Directory Id="ProductFolder" Name="My Product">
        <Component Id="MainComponent" Guid="" Win64="yes" KeyPath="yes">
            ...
        </Component>
        <Directory Id="DataFolder" Name="Data">
          <Directory Id="Machine" Name="Machine" >
            <Directory Id="MachinesFolder" Name="Machines">
              <Component Id="Machine1" Guid="{74341536-72DF-48C3-95E8-2851D9FA8318}" Win64="yes" KeyPath="yes">
                        ...
              </Component>
            </Directory>
            <Directory Id="TemplateFolder" Name="Template">
              <Component Id="TemplateFiles" Guid="{A0D0C225-D604-4B84-971D-41687A30EC36}" Win64="yes" KeyPath="yes">
                <File Id="Template1.rsbak" Source="$(var.SolutionDir)bin\Release\File1.rsbak" />
                            ...
              </Component>
            </Directory>
          </Directory>
        </Directory>
      </Directory>
    </Directory>
</Directory>

问题是我在编译时收到了TemplateFiles组件的错误ICE38: Component TemplateFiles installs to user profile. It must use a registry key under HKCU as its KeyPath, not a file。令我困惑的是,我在另一个项目(工作)中使用了类似的结构,并且在我的项目中有几个组件具有完全相同的设置(上面没有显示)。为什么这个 - 也是唯一的 - 组件坚持在正确安装所有其他组件时安装到用户配置文件到Program Files?

1 个答案:

答案 0 :(得分:6)

msiProgram Files个文件夹之间的Users\UserName\Documents看起来有显着差异。最后一个在您的示例中引用:

<Directory Id="DataFolder" Name="Data">

我遇到了类似的问题,并在博文中找到了答案 - http://robmensching.com/blog/posts/2007/4/27/How-to-create-an-uninstall-shortcut-and-pass-all-the

简而言之,您需要在RegistryKey root上定义HKCU作为Component的子元素,并将RemoveFolder元素添加为Directory的子元素。请参阅上面的链接以获取完整示例。另外:

  • KeyPath元素
  • 中删除Component属性 可能必须为所有文件夹定义
  • RemoveFolder。我使用了虚拟组件,里面没有文件