如何为自定义 outlook 插件添加预安装步骤
How to add pre-installation steps for a custom outlook addin
I am developing an outlook plugin using c# in visual studio. I can make it install-able plugin by publishing it and then install it by running setup.exe file. Before installation, I want a form to be opened to take user credentials and then verify them with third party, the plugin will either continue/cancel the installation based on successfull/ failed authentication. How can I add the pre-install functionality while publishing this plugin?
我已经探索并得到了这个link
https://msdn.microsoft.com/en-us/library/dd997001.aspx#Next 步数
它描述了如何为单击一次的应用程序创建自定义安装程序,但这让我感到困惑,要么我需要创建一个单独的 click ocne 项目,要么我如何获得该应用程序的 exe 文件。我需要 运行 一个 c# 应用程序来安装插件,但我需要一个 exe 文件。
如有任何帮助,我们将不胜感激。谢谢
部署 Office COM 加载项主要有两种方式:
- Deploying an Office Solution by Using Windows Installer
- Deploying an Office Solution by Using ClickOnce
您可以将自定义操作添加到 Windows 安装程序,您可以在其中检查用户的凭据。
I am developing an outlook plugin using c# in visual studio. I can make it install-able plugin by publishing it and then install it by running setup.exe file. Before installation, I want a form to be opened to take user credentials and then verify them with third party, the plugin will either continue/cancel the installation based on successfull/ failed authentication. How can I add the pre-install functionality while publishing this plugin?
我已经探索并得到了这个link
https://msdn.microsoft.com/en-us/library/dd997001.aspx#Next 步数
它描述了如何为单击一次的应用程序创建自定义安装程序,但这让我感到困惑,要么我需要创建一个单独的 click ocne 项目,要么我如何获得该应用程序的 exe 文件。我需要 运行 一个 c# 应用程序来安装插件,但我需要一个 exe 文件。
如有任何帮助,我们将不胜感激。谢谢
部署 Office COM 加载项主要有两种方式:
- Deploying an Office Solution by Using Windows Installer
- Deploying an Office Solution by Using ClickOnce
您可以将自定义操作添加到 Windows 安装程序,您可以在其中检查用户的凭据。