English 中文(简体)
VSTO x64 运行时间已安装但找不到
原标题:VSTO x64 runtime installed but can t be found

I created a WiX installer deploying an add in for Windows 2010. Target system is currently x64 Win & Office installed. I walked through several microsoft sites telling me that i ll need than an x64 installer & runtime (because the add in loads into the process of current word running). This installer checks the existence of VSTO Runtime using this statement:

<?if $(var.Platform)=x64 ?>
<?define win64Flag = "yes"?>
<?else ?>
<?define win64Flag = "no"?>
<?endif ?>

<Property Id="VSTORUNTIMEREDIST">
    <RegistrySearch Id="VSTORuntimeRedist" Root="HKLM" Key="SOFTWAREMicrosoftvsto runtime setupv4RVSTORFeature_CLR40" Name="Version" Type="raw" Win64="$(var.win64Flag)"/>
</Property>

<Property Id="OFFICERUNTIME">
    <RegistrySearch Id="OfficeRuntime" Root="HKLM" Key="SOFTWAREMicrosoftVSTO Runtime Setupv4" Name="Version" Type="raw" Win64="$(var.win64Flag)"/>
</Property>
<Condition Message="The Visual Studio 2010 Tools for Office Runtime is not installed. Please install the Office Runtime.">
    <![CDATA[Installed OR VSTORUNTIMEREDIST>="10.0.30319" OR OFFICERUNTIME>="10.0.21022"]]>
</Condition>

Actually it s working for the x86 Version of my Installer, but build in x64 mode, it is unable to find the x64 entry in the registry at any time (even if the runtime is installed). I already tried to uninstall and reinstall the runtime (with reboot acutally) but it does not worked.

我还删除了支票, 以安装我的添加, 但它没有在卸载后切开 。

因此,我的问题是,如果有任何已知的虫子问题,或者我使用错误的登记键?

最佳回答

在 x64 系统上 WoW64 应用程序被透明地重新定向为登记册的 Wawa6432Node 节点, 因此它们实际上寻找到一个密钥, 比如 HKEY_ LOCAL_ MACHINESOFWAREWAWA6432NodeMicrosoftVSTO 运行时间设置 节点。 它的位置是它。 但是, 真实的 x64 apps 正在查看真实的 HKEY_ LOCAL_ MACHINESOTWAREWOFOFMIFOFOVSTO 运行时间设置 节点, 而密钥是自然存在的。 这很可能导致您的安装器失败 。 因此, 对于 x64 安装器来说, 您需要指定有 < code> Wawa6432 No 路径部分的全节点 。

这叫做登记册反射和

问题回答

暂无回答




相关问题
Manually implementing high performance algorithms in .NET

As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...

Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

How do I compare two decimals to 10 decimal places?

I m using decimal type (.net), and I want to see if two numbers are equal. But I only want to be accurate to 10 decimal places. For example take these three numbers. I want them all to be equal. 0....

Exception practices when creating a SynchronizationContext?

I m creating an STA version of the SynchronizationContext for use in Windows Workflow 4.0. I m wondering what to do about exceptions when Post-ing callbacks. The SynchronizationContext can be used ...

Show running instance in single instance application

I am building an application with C#. I managed to turn this into a single instance application by checking if the same process is already running. Process[] pname = Process.GetProcessesByName("...

How to combine DataTrigger and EventTrigger?

NOTE I have asked the related question (with an accepted answer): How to combine DataTrigger and Trigger? I think I need to combine an EventTrigger and a DataTrigger to achieve what I m after: when ...