I have an MMC Snapin Extension written in C# with MMC 3.0 SDK. My snapin extension is extending another snapin extension that was written in C++ (MMC 2.0).
I have overridden OnInitialize() and OnShutdown(). The constructor is empty. In 32-bit MMC I see that my snapin is created (ctor called), OnInitialize is called, and then OnShutdown() is called when I close MMC. Great!
In 64-bit mode, my snapin extension is created, OnInitialize() is never called, but when I close MMC, OnShutdown() is called for my snapin extension.
I have no idea why OnInitialize is not called in 64-bit mode and I'm running out of things to try. Does anyone have any suggestion why this might be happening or where I could look for a clue? Is there a way to get diagnostics from MMC?