Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
921 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
0answers
37 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
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 ...
1
vote
1answer
313 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
186 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
1answer
84 views

How to remove “new window from here” menu item (MMC 3.0)

Currently I'm developing an MMC 3.0 based application. How I'm able to hide\remove the menu item "New window from here" which appears when you right click on any node in the left=hand pane (this is ...
0
votes
0answers
39 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
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 ...
0
votes
1answer
343 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
138 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 ...
0
votes
1answer
88 views

I have an MMC snapin and several extension snapins. What defines the order that the extension snapins are displayed in, I would like to control this order

When loading the primary snapin the extension snapin nodes appear in some defined order, but I cannot see what defines the order.
0
votes
1answer
253 views

Updating The Status Bar Of An MMC Snapin [closed]

I'm writing an MMC snap-in that grabs some data from a database and puts it into a form. I want to update the status line to say how many records were found. I have the ASyncStatus object, but calling ...