I need to create a SINGLE Windows installer that performs the following tasks when it is run on the target m/c:
- Runs a service
- Registers a 32 bit DLL
- Stores the 32 bit and 64 bit log4cxx.dll libraries in
C:\Windows\sysWoW64folder andC:\Windows\system32 - Registers a 64 bit DLL
Currently, I am using WiX to create an installer and I am at a point where I can register either 32 bit OR 64 bit installer but not both. Unfortunately, I don't have the option of separating the 32 and 64 bit installer as I need to register both the installers on a 64 bit machine.
I would like to know if there was a way to register both the DLLs in one installer. Thanks in advance.