I’m looking for a way to deploy a system DLL within my ActiveX CAB file. CAB cannot update system file and whole installation fails. Perfectly, I would like to copy the DLL into ActiveX installation folder.

My best suggestion (I didn’t try it yet) is using INF file hooks with some standalone installer, but I wonder is there another way?

Any other ideas will be appreciated…

link|improve this question

Which system dll? – Shay Erlichmen Sep 1 '09 at 14:11
I use dbghelp.dll for dump creation, but in Win2K dbghelp.dll does not contain MiniDumpWriteDump. So I need to use later version and cannot replace system’s one. – Eugene Sep 1 '09 at 15:16
Perhaps this is a dumb question, but is it really a hard requirement that you need to be able to call MiniDumpWriteDump even on Win2K? It might reduce headache to use LoadLibrary/GetProcAddress against the system copy of this binary and just "fail gracefully" if the entrypoint is missing (as it will be on 2K)... It should hopefully be present in XP+... – reuben Sep 3 '09 at 7:47
Reuben, I’ve tried this way, but it does not work properly with WinXP, mostly application just hangs up. I don’t know why, probably there is some specific. – Eugene Sep 4 '09 at 3:58
feedback

2 Answers

up vote 0 down vote accepted

Pack your dll in as a resource of the main ActiveX control. Use your own code to write it to a file.

The malware industry has lots of experience doing this, and example code should be available.

link|improve this answer
I decided to refuse Win2K supporting, but this answer looks more promising… – Eugene Sep 22 '09 at 4:54
feedback

You can install the dll into the ActiveX installation folder and dynamically load the dll (using LoadLibrary) and its methods (using GetProcAddress).
This way you will be able to control from where to load the dll and use your local copy instead of the system.

link|improve this answer
I can install DLL to ActiveX installation folder only with standalone installer (.msi, *.exe). In this case all should work even without late binding. But the question is how to do it from CAB file? CAB has DestDir key, but it’s value is one of the system locations. BTW, I suppose I’m using MiniDumpWriteDump from dbghelp.lib, which has dependence to dbghelp.dll. – Eugene Sep 1 '09 at 15:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.