Create Excel Add-in without VSTO
问题 I have used VS 2010 to create an Excel 2007 Add-in with C#. The add-in is a TaskPane-based UI. Works great, love it. However, my users do not have Admin access and cannot install the add-in because VSTO is required. Is there a way to create/port this add-in to a normal COM based add-in without this show-stopping reference to VSTO? 回答1: They shouldn't necessarily require admin rights just because you use vsto. Make sure that the addin is being installed "Per user" instead of "per machine". 回答2