Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Deploying VSTO Add-In to All Users

I add a Word 2013 Add-In project for add ribbon to word.

I Release it. it added ribbon to word for current user, but i want add it to all user.

I set registry in windows.

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\12.0\Common\General\

Set EnableLocalMachineVSTO=1 for it.

but don't add it to all user.

like image 253
ar.gorgin Avatar asked Oct 20 '15 07:10

ar.gorgin


1 Answers

You need to register the add-in for all users. See Registry Entries for Application-Level Add-Ins for more information.

I'd suggest creating an installer for the add-in to get it deployed easily. The Deploying an Office Solution by Using Windows Installer article describes all the required steps for creating MSI instanllers.

like image 180
Eugene Astafiev Avatar answered Sep 30 '22 15:09

Eugene Astafiev