I am writing an installer using WIX, and I need to add a .dll file to the GAC. I use:
<File Id="my.dll" Name="my.dll" DiskId="1" Source="..\MyResources\" KeyPath="yes" Assembly=".net" />
This works perfectly fine for the Administrator user, however when i run this from a non-administrator user, the installer fails with an error that i don't have privileges.
Is there a way to overcome this?
If i write a custom action, will i be able to use gacutil from a non-administrator user?
Thanks for your help, Maxim