Tagged Questions
11
votes
6answers
2k views
Benefits of developing MMC snap-ins instead of traditional GUI apps
What are the benefits of developing MMC snap-ins instead of traditional GUI apps? AFAIK the MMC snap-ins can be loaded remotely to control some server applications but I have never dived deep in this ...
2
votes
3answers
941 views
How to get rid of the “Console Root” node in a MMC 3.0 snapin?
I've been creating snapins with the new MMC 3.0 classes and C#. I can't seem to find any examples of how to get rid of the "Console Root" node when creating the *.msc files. I looked through the ...
1
vote
1answer
37 views
Snap-in not showing up in Windows 7
I developed a snap-in for the MMC 3.0 framework using c#. The snap-in has been installed successfully on Windows XP for years now. However, I recently tried installing the snap-in on a Windows 7 PC ...
1
vote
0answers
36 views
Using old MMC snap-in on windows 2003 x64 and windows 2008 x64 with .NET 4.0 Framework
We are using the ironring MMC C# library, on win2003 32bit it's work good using .NET 1.1 framework.
we do some upgrade to the ironring MMC C# library and convert it to .NET 4.0.
it's seems to work ...
1
vote
0answers
42 views
How to detect when a user navigates away from MMC FormView?
I have an MMC snapin (MMC 3.0) with a ScopeNode that adds a Microsoft.ManagementConsole.FormView. This FormView is used to edit a script. If the script contains syntax errors I need to prevent the ...
1
vote
1answer
318 views
MMC Extension Snap-in order
Anyway I can reorder the extension snapins of an MMC 3.0 snapin?
I have two snapins one being 3.0 and one being 2.0. The 3.0 snapin always appears before the 2.0 becuase in the registry it appears ...
1
vote
1answer
189 views
Can I provide localized CHM files for an MMC 3.0 snap-in on Windows 2003?
I am developing a MMC 3.0 snap-in using C#. I would like my snap-in to automatically localize itself according to the current language, i.e. on a Spanish OS, the snap-in should display in Spanish and ...
0
votes
0answers
43 views
MMC Snapin Extension: OnInitialize() not called in 64-bit mode?
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 ...
0
votes
1answer
67 views
Getting IWin32Window interface of a MMC snap-in
I'm building my own mmc snap-in using C#, and it one of the actions causes ShowDialog.
The problem is that the show dialog doesn't block the mmc window, So i want to use ShowDialog(IWin32Window) but ...
0
votes
1answer
260 views
Creating MMC Snap-Ins for console application and windows service
Hi guys I need to have a standard management gui ( look and feel ) and lately I've been looking into mmc. Msdn and other free tutorials provides the installation and simple implementation of a snap ...
0
votes
1answer
360 views
MMC 3.0 snap in development and 'connect to another computer…' dialog
I'm in the process of developing a custom MMC 3.0 snap-in and was wondering if there is some built in SDK/API way of connecting to another computer running the same snap-in? If so, can someone ...
0
votes
1answer
143 views
COM Exception Receiving WMI Event in MMC Snapin
I am attempting to create an MMC snapin that among other things, will receive and display log events that are fired from my service. I have created the watcher and it fires correctly, but when I try ...