如何为 Outlook 插件构建自动更新?
我正在构建一个 Outlook 插件,我想知道当我们发布新版本时是否有任何标准方法可以让插件自行更新(或者至少通知用户访问我们的网站并下载/安装最新版本)? 我一直在考虑的天真的方法是每隔一段时间 ping 我们的服务器以检查更新,并显示一个消息框。 谢谢
I'm building an outlook addin, and I was wondering if there was any standard way to have the addin update itself when we release new versions (or at least notify the user to visit our website and download/install the newest version)? The naive way I've been thinking about doing is just pinging our server every once in a while to check for updates, and showing a messagebox. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嘿,如果您使用 vs 2008(我猜您就是这样),这很容易实现,因为 vs 2008 向 VSTO 添加了单击一次部署支持 - 检查下面的链接,它们应该可以帮助您实现这一点:
1) http://www.codeproject.com/KB/office/Outlook_Add-in.aspx -这是 msi + 单击一次的组合,这样您就不会遇到外接程序的安全问题(如果它使用注册表和其他单击一次不允许的东西)
2) http://msdn.microsoft.com/en-us/library/cc136646.aspx
3) http://www.outlookcode.com/article.aspx?ID=42
hey this is very easy to achieve if you are using vs 2008 (which i guess you are), because vs 2008 adds click once deployment support to VSTO - check below links, they should help you achieve this:
1) http://www.codeproject.com/KB/office/Outlook_Add-in.aspx - this one is combination of msi + click once so that you do not run into security issues with your addin (if it uses registry and other stuff which click once does not allow)
2) http://msdn.microsoft.com/en-us/library/cc136646.aspx
3) http://www.outlookcode.com/article.aspx?ID=42