I'm trying to use Wix to drop some DLLs on the target machine and then run 
another installer, this being a .VSIX that installs some templates.

I'm not having any luck getting this to work.  This is what I'm doing right now:

<Binary Id="vsix" SourceFile="..\..\..\SolutionItems\sobmofogdfu.vsix"/>

<CustomAction Id="InstallTemplates"
                           Execute="deferred"
                           Impersonate="no"
                           ExeCommand=""
                           Return="asyncNoWait"
                           BinaryKey="vsix"/>

<InstallExecuteSequence>
       <Custom Action="InstallTemplates"
                     Before="InstallFinalize"/>
</InstallExecuteSequence>

This doesn't work.  All I want to do is tell the operating system to "execute" 
the friggen vsix.  How do I do this?
------------------------------------------------------------------------------
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to