packing and deploy the VSTO Outlook plugin - vsto

I created VSTO Outlook plugin. In my dev environment, it runs perfect.
How can I packing and deploy the VSTO Outlook plugin (outside my dev environment)?
Regards
Stefan

There are two main ways for deploying Office based COM add-ins:
Create an MSI installer, see Deploy an Office solution by using Windows Installer for more information.
Create a lightweight web-based installer ClickOnce, read more about that technology in the Deploy an Office solution by using ClickOnce article.

Related

VSTO Add-in Installer - Ask for some user information

I am developing EXCEL VSTO add-in where each user have their own license file to communicate with API. I am new to VSTO add-in development and have no experience on creating installer of VSTO Add-in. Is there any chance that in installer we can provide step where we ask user to upload license file before installation?
There are two main ways for deploying Office solutions:
Deploy an Office solution by using Windows Installer
Deploy an Office solution by using ClickOnce
All the required steps are described in the articles mentioned. It is up to you which one is to choose.
However, MSI (Windows Installer) allows to create a custom UI with custom actions that will work for you best.

Deploying VSTO Add in created on VS 2017

I have created an add in and testing it and it works great.
But how do I now deploy it to our users?
If I run the VSTO file as admin it doesnt install it for the other users.
They each have to run the VSTO file.
Thanks for any advice
There are two main ways for deploying VSTO based solutions:
Deploying an Office Solution by Using Windows Installer
Deploying an Office Solution by Using ClickOnce

How to install custom plugin on outlook (for mac)?

I have created a simple plugin and installed it on my outlook (for windows). It works fine. However i want to know - can I install the same plugin on outlook (for Mac)? If so, Please guide. Thanks!!
No, you can't. Office/Outlook for Mac doesn't support add-ins. The COM technology (on which Office add-ins are based) is for Windows only.
The only possible option is to develop a VBA macro instead.

Is VSTO runtime installed with MS Office installation?

I want to build an add-in for Office applications using VSTO. I want to know if the VSTO runtime is installed along with the installation of MS Office 2007 or not. If Office installation does not install VSTO runtime then I will have to make my setups do that.
No, VSTO is not installed by default. Add it as a pre-requisite to ClickOnce or your setup project.

Deploy VSTO application in visual studio windows application

I have created a VSTO application using office 2005 & visual studio 2005 professional.I found there a setup folder.While i am running the *.exe file in client machine,it giving me error."An add-in could not be found or could not be loaded."
What is the architecture of the client machine?
If Vista: do you have the UAC (Security Dialog) disabled?
Also check in the Registry if the Path to the Manifest File is correct.
Is it loading the right Framework Version?
Are you using the Publish feature, or are you trying to create your own MSI?
You need to do some debugging on your side to have this sorted maybe:
Try to uninstall VSTO SE completely and install it again.
Create a new VSTO add-in without any additional code and run it.
Evaluate what happens and perform actions accordingly