Tagged Questions

2
votes
3answers
922 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
28 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
28 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
1answer
288 views

How to detect the close event of MMC 3.0 SnapIn written in C#

Folks, I am creating a MMC3.0 SnapIn program with C#. There I have some scope nodes and I have FormViewDescription's where I used C# UserControl instances to display some data. And my intent is, user ...
0
votes
1answer
61 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
254 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 ...