zoukankan      html  css  js  c++  java
  • Office应用 VSTO软件的部署点滴

    VSTO程序正确运行的前置条件

    需要安装以下的内容

    VS2008开发的组件

    .net框架3.0/3.5

    VSTO运行环境3.0

    Office PIA安装程序[Office安装程序或独立的安装包安装,Office 2003/2007],Office2003版本需要特别注意,需要安装对应的补丁

    VS2010开发的组件

    .net框架4.0

    VSTO运行环境4.0

    Office PIA安装程序[Office安装程序或独立的安装包安装,Office 2007/2010版本]

    简单的安装和注销方法

    以a.vsto为例

    安装

    "%ProgramFiles%\Common Files\Microsoft Shared\VSTO\9.0\VSTOInstaller.exe" /i "%cd%\a.vsto"

    "%ProgramFiles%\Common Files\Microsoft Shared\VSTO\10.0\VSTOInstaller.exe" /i"%cd%\a.vsto"

    卸载

    "%ProgramFiles%\Common Files\Microsoft Shared\VSTO\9.0\VSTOInstaller.exe" /U "%cd%\a.vsto"

    "%ProgramFiles%\Common Files\Microsoft Shared\VSTO\10.0\VSTOInstaller.exe" /U "%cd%\a.vsto"

    注册表的关联

    VSTO程序安装后,在注册表HKEY_CURRENT_USER\Software\Microsoft\Office\Word\Addins\下有对应的组件的名称项[Word为例,Excel Outlook类同] ,其中的loadbehavior控制加载的行为,可以赋的值有:

    0  Disconnected. The add-in is not loaded.

    1  Connected. The add-in is loaded.

    2  Load at startup. The add-in will be loaded and connected when the host application starts.

    8  Load on demand. The add-in will be loaded and connected when the host application requires it (for example, when a user clicks a button that uses functionality in the add-in).

    16  Connect first time. The add-in will be loaded and connected the first time the user runs the host application after registering the add-in.

    一般常用的3,是1和2的或值,在组件异常后,这个值会自动变为2,此时需要手动或者程序处理设置,才能正常的看到组件的展现。

    使用这些方法可以在一些出现问题的机器上检查组件不加载的原因

  • 相关阅读:
    [JavaScript]使用setTimeout减少多余事件
    Spring.NET教程(二)——环境搭建(基础篇) (转)
    IIS开启GZIP压缩效率对比及部署方法 (转)
    提高表格操作的十五款jQuery插件
    SQLServer和Oracle常用函数对比
    [hystar整理]Entity Framework 教程
    Remoting方法重载遇到的一个问题
    异变: input的背景background
    实时股票数据接口
    发现并解决ASP.NET内存耗尽(OOM),让服务器"永不重启"
  • 原文地址:https://www.cnblogs.com/2018/p/1894841.html
Copyright © 2011-2022 走看看