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,此时需要手动或者程序处理设置,才能正常的看到组件的展现。

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

  • 相关阅读:
    Python--day62--什么时候用GET请求和POST请求
    Python--day62--ORM的使用
    使用 vs code 搭建vue项目(一)
    jquery如何模拟分页-小白进阶
    JavaScript 实现的4种数字千位符格式化方法
    web秀
    五十个UI设计资源网站
    基于 HTML5 WebGL 的 水泥工厂可视化系统
    ASP.NET MVC图片管理(上传,预览与显示)
    jQuery使用FormData上传文件
  • 原文地址:https://www.cnblogs.com/2018/p/1894841.html
Copyright © 2011-2022 走看看