SETUP 运行并安装 Outlook 插件后,如何启用插件
问:安装后如何“查找”和“启用”加载项
背景
我开发了一个针对 Outlook 2007 的加载项。我使用了 C#、VSTO 4.0 和 Visual Studio 2010。它运行良好从 Visual Studio 启动时;它在 Outlook 2010 上也运行良好。
使用 VStudio 2010 的发布向导,我在“发布文件夹”中创建了一个 SETUP.EXE。
我想在 Outlook 2003 上尝试这个加载项(如果它也能在该平台上工作,那就太好了)。
在安装了 Outlook 2003 的计算机上,我运行了上述设置,此安装运行良好,没有错误:
- .Net Framework 4 Client Profile (x86 和 x64) 下载并安装
- VStudio 2010 Tools for Office Runtime (x86 和 x64)下载并安装了
- MS Office 自定义 安装成功
那么,现在该怎么办呢?我对此进行了研究,但在任何地方都找不到这个最近安装的加载项:
- 没有关于此加载项的信息 工具-选项-高级选项-加载项 经理
- 没有关于此加载项的信息 工具-选项-高级选项-COM 加载项..
- 没有关于此加载项的信息 注册表: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\ Outlook\Addins
应公开的 UI 是 Office CommandBar 上的按钮。
提前致谢..
Q. How to "find" and "enable" an add-in after installation
Background
I developed an add-in which targets Outlook 2007. I used C#, VSTO 4.0 and Visual Studio 2010. It runs fine when started from Visual Studio; it also runs fine against Outlook 2010.
Using the Publish Wizard of VStudio 2010, I created a SETUP.EXE in a "publishing folder".
I wanted to try this add-in against Outlook 2003 (it would be a bonus of this could work against that platform too).
On the machine with Outlook 2003 installed, I ran the above SETUP and this install ran fine without errors:
- .Net Framework 4 Client Profile (x86
and x64) downloaded and installed - VStudio 2010 Tools for Office Runtime
(x86 and x64) downloaded and installed - MS Office customization was
successfully installed
So, what to do now? I've researched this and I cannot find this recently installed add-in anywhere:
- Nothing about this add-in in
Tools-Options-Advanced Options-Add-In
Manager - Nothing about this add-in in
Tools-Options-Advanced Options-COM
Add-Ins.. - Nothing about this add-in in
Registry:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\
Outlook\Addins
The UI that should be exposed is a button on the Office CommandBar.
Thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想这很简单。使用 VSTO 2010,您将获得无法面向 Office 2003 的新运行时。 请参阅这篇 MSDN blob 文章。 StackOverflow 上也有一些关于构建两种解决方案(Office 2007/2010 与 2003)的必要性的讨论。
I guess it's very simple. With VSTO 2010, you get a new runtime which cannot target Office 2003. See this MSDN blob article. There are also here on StackOverflow some discussions about the necessity to build two solutions (Office 2007/2010 vs. 2003).