博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用 InstallShield limited edition 打包部署Outlook 2013 Office add-in插件
阅读量:5751 次
发布时间:2019-06-18

本文共 1834 字,大约阅读时间需要 6 分钟。

原文:

 

Today I had to create an installer for an Outlook 2013 add-in (created using Visual Studio 2013), and as the process is different to previous versions I thought I'd document it here.  I will only detail the differences from previous versions - I am assuming that you have completed the first three steps that are the same as described .

Add a new project to the solution, and select InstallShield Limited Edition Project (note that you will have to have installed this - the first time you select to add it, you will be guided through the process)

Select Application Information, and enter details for your add-in.

Select the installation requirements for your add-in.  Currently it seems that Office 2013 is not available as a pre-requisite, so the only one to include is .Net 4.5 (or whichever framework your add-in uses).

 Add the application files.  As for previous versions of VSTO, you need to add the project output, and also the manifest and vsto files from the output folder of the add-in project.

Set the registry keys.  These also are the same as previous versions.  The screenshot here shows the keys for a 32 bit add-in (i.e. with 32 bit Outlook).  64 bit would use the 64 bit registry.

(注意:

****示例用的是HKEY_LOCAL_MACHINE ,也可能是HKEY_CURRENT_USER,

****Outlook也可以是相应的Word/Excel/PowerPoint等)

Windows Registry Editor Version 5.00 

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Outlook\Addins\NameOfAddin]
"Manifest"="[INSTALLDIR]NameOfAddin.vsto|vstolocal"
"Description"="addinxxxxx"
"FriendlyName"="addinxxxxxx"
"LoadBehavior"=3    ------------------DWORD Value

Choose your options for the installation interface.

Finally, check the setting for your build.  I chose a single image build, as this creates a setup.exe.  Once done, you can build the setup project and then locate the setup.exe in the output folder.  This can be deployed to users.

 

转载地址:http://iqukx.baihongyu.com/

你可能感兴趣的文章
Rancher-k8s加速安装文档
查看>>
Python读写excel表格的方法一
查看>>
SQLserver报错-将截断字符串或二进制数据。
查看>>
RancherOS v1.2.0发布!
查看>>
软链接和硬链接的爱恨之约
查看>>
chattr 命令
查看>>
注意nagios权限问题
查看>>
Zabbix添加自定义监控项之(监控mysql状态)
查看>>
限定user_agent -apache
查看>>
CentOS6.3如何将em1改为eth0
查看>>
Linux下MySQL的基础(一)
查看>>
浅析JPA中EntityManager无法remove entity的问题
查看>>
springmvc的学习
查看>>
分区:怎样将数据分布到多个redis实例
查看>>
【Weblogic干货】瞬间运行正常的weblogic.xml内幕
查看>>
ARP协议
查看>>
spring boot应用启动原理分析
查看>>
redis命令
查看>>
Python的字典 { }
查看>>
splice系统调用实现的TCP代理
查看>>