0

I have created an add-in for Excel 2007 in visual studio. How do I make an installer / get it onto other peoples computers.

Thanks in advance.

rustybeanstalk
  • 2,722
  • 9
  • 37
  • 57
  • Check out the links provided in [my answer dealing with Excel 2010](http://stackoverflow.com/questions/6932342/how-can-i-include-net-4-tools-for-office-with-my-application/6932533#6932533) - you should be able to adopt most of it for Excel 2007. – Filburt Oct 11 '11 at 17:25

1 Answers1

0

If your add in is an XLA or XLL: Installing means: copy it to %APPDATA%/Microsoft/Excel/XLStart

Doing so, the add-in will be loaded upon startup (except if the user disabled macros or s.th. like that).

(%APPDATA% is a user specific folder).

Christian Fries
  • 16,175
  • 10
  • 56
  • 67