我有一个用于 x86 应用程序的 WiX 安装程序。但是,它需要为单个组件写入注册表的 x64 区域。为此,我有以下内容
<Component Id=foo"..." Win64="yes">
<Condition>VersionNT64</Condition>
<RegistryValue
Root="HKLM" Key="SOFTWARE\Microsoft\...."
....
</Component>
.....
<Feature Id='MyFeature' Level='0'>
<ComponentRef Id='foo' />
<Condition Level='1'>VersionNT64</Condition>
</Feature>
当我尝试在 x64 系统上运行安装程序时,这工作正常。当我在 x86 系统上运行时(即使由于这种情况我不希望安装此组件),我收到以下错误:
SchedSecureObjectsRollback_x64 3: SchedSecureObjectsRollback 4: C:\Windows\Installer\MSIA98C.tmp
MSI (c) (84:80) [20:31:05:701]: Font created. Charset: Req=0, Ret=0, Font: Req=MS Shell Dlg, Ret=MS Shell Dlg
Error 1723. There is a problem with this Windows Installer package. A DLL required for this install to complete could not be run. Contact your support personnel or package vendor. ............
如果我取出 Win64 属性,一切正常。但是,我确实需要 x64 系统的 Win64 属性。
任何想法将不胜感激,谢谢!