You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sorry if this has been discussed before, I have been googling for 2 days with no luck!
I have an addin for word that I made with visual studio and wix, when I compile a debug version it successfully registers it and the addin loads automatically. The export from the registry looks like this:
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\Word\Addins\IELaddin]
"Description"="IELaddin"
"FriendlyName"="IELaddin"
"LoadBehavior"=dword:00000003
"Manifest"="file:///C:/Users/leetsp/Documents/Visual Studio 2015/Projects/IELaddin/IELaddin/bin/Debug/IELaddin.vsto|vstolocal"
however when I create the MSI installer I need to add a section in the .wxs file to create this registry entry. I have it partially working but what is giving me trouble is the spaces in the value for "manifest". you can see the commented out failures in my code snippet below.
can anyone tell me how to do this?
Thanks for any help!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
sorry if this has been discussed before, I have been googling for 2 days with no luck!
I have an addin for word that I made with visual studio and wix, when I compile a debug version it successfully registers it and the addin loads automatically. The export from the registry looks like this:
however when I create the MSI installer I need to add a section in the .wxs file to create this registry entry. I have it partially working but what is giving me trouble is the spaces in the value for "manifest". you can see the commented out failures in my code snippet below.
can anyone tell me how to do this?
Thanks for any help!
my failed attempts look like this:
Beta Was this translation helpful? Give feedback.
All reactions