From the Window's command prompt I can register a DLL like so:
%windir%\SysWOW64\regsvr32 C:\User\Desktop\msxml4.dll
(I have a 64-bit computer, but need to use the 32-bit version of MSXML4).
Also I can make a custom action folder in Visual Studio 2012 or 2013. Here is image of folder:
However, I would like my custom action install method (or any other alternative) to automatically register the MSXML4 on regsvr32 (instead of me manually doing it) when I run the setup that I have build. How can achieve this?
I have not been able to find much documentation on Visual Studio Custom Actions online, and am fairly unfamiliar with the tool in the first place.
I will have to work with Visual Studio 2012 or 2013 for various reasons and can't really consider alternatives to VS. I realize that I can manually register msxml but I need to automatically do so.
Any suggestions would be appreciated.