Tagged Questions

The Microsoft Management Console (MMC) is a component of Windows that provides an administrative interface for system configuration. It can be extended with _snap-ins_, which are COM or managed code components that provide the user interface for a particular administrative domain.

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 ...
10
votes
1answer
651 views

How can I use SD card for data logging 16bit data at 48ksps

Background My board incorporated an STM32 microcontroller with an SD/MMC card on SPI and samples analogue data at 48ksps. I am using the Keil Real-time Library RTX kernel, and ELM FatFs I have a ...
8
votes
2answers
542 views

How does one create Microsoft Management console(MMC) snap-in in Delphi 2009?

Are there an wizard or templates in delphi 2009 to write a MMC console ? EDIT: Colin Wilson components look great thanks.
7
votes
3answers
2k views

Creating Custom MMC SnapIn with VB.Net or C#

Does anyone know good current (.Net 2.0 3.0 or 3.5) basic documentation, books or urls that document the basics of how to program this in VB.Net or C#. Thanks Roy Cotton
5
votes
2answers
5k views

Loading/Unloading assembly in different AppDomain

I need to execute a method in an assembly loaded during runtime. Now I want to unload those loaded assemblies after the method call. I know that I need a new AppDomain so I can unload the libraries. ...
4
votes
1answer
558 views

WPF in an MMC snapin

Can someone provide some sample code for using WPF in a custom MMC snapin? I'm new to WPF, and I've understood the samples for writing MMC snapins, but I do not understand how to choose WPF instead ...
2
votes
4answers
220 views

How to develop a snap-in for IIS 6.0 manager in MMC 2.0

I have some IIS 6.0 filters and extensions that I need to create a configuration panel for in IIS Manager. I need to create something similar to the ASP.NET tab, for instance. I need to support ...
2
votes
1answer
72 views

Microsoft Management Console in .NET applications

Is it possible to host MMC snap-ins inside a .NET application? If not, is it possible to launch MMC with the "Computer Management" snap-in set to an arbitrary computer name
2
votes
1answer
357 views

When putting an SD/MMC card into SPI mode, can CS go high in between bytes?

I have a microprocessor with the card's chip select (CS) line tied to a 'frame' signal automatically driven by the SPI (SSP) circuit. This causes CS to go high between each byte. The MMC/SD specs ...
2
votes
1answer
360 views

how to add my snap-in to MMC

i'm dveloping simple c# application under windows 7 as an span-in to mmc as in this link http://msdn.microsoft.com/en-us/library/ms692759(VS.85).aspx after adding the dll to GAC i used ...
2
votes
2answers
1k views

MMC custom snap-ins installation

I have written a snap-in in c#. I tried installing it using installutil and it didn't work at first. I notice that on the msdn page they said to run mmcperf to install the management.dll into the ...
2
votes
1answer
244 views

Can I host an MMC snapin in an application

Is there a way to host an MMC snapin in an application? Specifically, we have an "Enterprise Management Application" that we use to manage our applications / services, and we want to add certain ...
2
votes
3answers
923 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
64 views

TreeVIew icons not displaying in MMC Snap-in on Windows XP

We have developed a User Interface as an MMC snap-in but we’re having issues displaying icons inside a Treeview on Windows XP. Basically, icons (.ico) added to ImageLists of a TreeView are simply not ...
1
vote
1answer
62 views

MMC development in c#

How can I provide the tool tip for my MMC Snapin scope node. I am not bale to figure it out how to provide the tooltip functionality.
1
vote
1answer
130 views

MMC development in c#

Hi i am developing MMC snap in C#, in this i want to read XML file so where to put my xml file. the code is not giving any build error but when i am adding the snapin in MMC its giveing error what ...
1
vote
1answer
91 views

Is there a sample anywhere of an AzMan Custom Object Picker?

Supposedly it's possible to write a custom picker and integrate it with AzMan. This capability can be used to allow MMC users to add non-Windows users to AzMan stores. (See here). According to one ...
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
2answers
379 views

How to read_single_block from SD card using SPI mode (getting weird behavior as of yet)?

When I issue cmd17 with address (0x00000000) to my card from PIC-18F4520 on SPI bus, I get a correct return R1 token from the command issue. Then, after a few loops checking, I get a 0xFE marker ...
1
vote
1answer
68 views

How to localize MMC snap-in (default actions, file menu, etc)

I am developing a MMC 3.0 snap-in and have a framework in place to localize all string literals at run-time. However, the MMC inserts lots of 'default' menu items, actions and descriptions, none of ...
1
vote
0answers
106 views

Modern MMC like Web GUI for server management?

we are thinking to make a management tool for the win app. I was thinking about MMC but it needs to be web based one. Please can you advice me what to use to build nice mmc like web based management ...
1
vote
1answer
202 views

New AppDomain from MMC Snap-In does not get elevated privileges for UAC

I've created an MMC snap in that launches code in a new appdomain and part of the code checks for a registry key. If I check for the key in the snap in process it works, but the code in the new ...
1
vote
1answer
157 views

Convert Windows Forms into an MMC SnapIn

I have a Windows Forms app, which I want to convert into an MMC snapin and display the form in one of the forms, the form has a few buttons and event handlers for button clicks etc. Should I convert ...
1
vote
1answer
185 views

Embedding native win32 resources into .NET assembly?

Is it possible to embed a .net resource (resx) into compiled assembly as a native win32 resource? Like I need an array of native resource images writing my MMC custom snap-in.
1
vote
3answers
375 views

How can I stop window rendering and later resume?

I'd like to prevent my window from being updated until I finish receiving data from the server and render it. Can I hook on the WM_PAINT event, or better still call some Win32API method to prevent the ...
1
vote
1answer
312 views

Debugging MMC (Unmanaged c++)?

I work on a legacy MMC application and one thing I have noticed is that once in awhile when closing the MMC, an error will be reported. "MMC has detected an error in a snap-in. It is recommended that ...
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
15 views

Change the data in a third-party mmc snap-in

There is 3-rd party application which is controlled by the console mmc, using a snap-in. What are some ways to interact with the data in this snap-in from the outside? (except of course the manual). ...
0
votes
0answers
33 views

Simulate MMC card in Linux kernel

I try to add mmc_spi module to my 2.6.21 kernel to communicate with mmc card via SPI. I suppose that 3 modules are neccessary: mmc_core mmc_block mmc_spi My mmc_blk device is registered in system ...
0
votes
1answer
53 views

How do I control an MMC snap-in using PHP (or any other scripting language)?

I know that you can control an MMC snap-in using the MMC 2.0 Automation Object Model. I have not researched its capabilities, but I know that it is used with any of the .NET languages, (Visual C#, VB ...
0
votes
0answers
20 views

How to invoke “Log on as a service Properties” window programmatically?

I have a user/password page on my installer to install and start my Service. How to invoke "Log on as a service Properties" window programmatically if a customer enters a user without rights to ...
0
votes
1answer
35 views

How to invoke “Log on as a service Properties” window programmatically?

How to invoke "Log on as a service Properties" window programmatically? Can I do this using the command line and mmc?
0
votes
0answers
24 views

MMC won't display Taskpad symbols after upgrade to IE9 - EOT issue?

I develop an MMC Application and have run into an issue that has happened as a side effect of upgrading to IE9. Within the MMC application are 2 Taskpad views, which each display a number of tasks ...
0
votes
0answers
21 views

Querying MMC 3.0 information on Windows Server 2008?

Is it possible to query prorgrammmatically the information provided by MMC snap ins? I am especially interested in the Remote Desktop Services snap in. Is there something like an API? I am free to ...
0
votes
2answers
50 views

Performance monitor graph example

I am looking for a way to display performance monitor graphs in a mmc plugin (winforms). I can see that msdn used to have an example on this at: http://msdn.microsoft.com/en-us/library/Aa645516 But ...
0
votes
2answers
206 views

Can't Log Out of Windows Server 2008

I'm currently logged into my Windows Server 2008 R2 (x64) server, using Remote Desktop. As soon as I clicked on Start -> Log Out, this message popped up: The message says: "Waiting for all ...
0
votes
0answers
23 views

MMC snap-in cannot locate a 3rd party DLL located in PATH directory

I am having a problem with a 32-bit MMC snap-ins (on a x64 server 2008 machine). The snap-ins have been successfully registered. When I launch the associated.msc file using the mmc (with 32 bit ...
0
votes
0answers
53 views

Can i Access 3rd Party Microsoft Management Console (MMC) with Powershell?

Can i Access 3rd Party Microsoft Management Console (MMC) with Powershell? Maybe there is a Com-Object which i can talk to? Havn't found any examples...
0
votes
0answers
44 views

MMC hangs up after changing Windows service user account

I have a Win2008 R2 Core VM with AD and DNS. I also have an XP VM which is a member of the other's domain. I wrote a windows service and installed it in XP. I tried changing the account from the ...
0
votes
0answers
46 views

MMC development in c#

I am developing an MMC snapin which used to create users. but i want open one page with help some keyboard key combination. So anyone let me know how to do this.
0
votes
1answer
72 views

Open event viewer from a certain node

What is the command to open windows event viewer displaying a particular node details? For example if I simply use eventvwr command; it opens the UI with Root Node selected. I want Application node ...
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
0answers
80 views

MMC via SPI in 2.6.21 kernel

I would like to add MMC via SPI interface to my SDK. It contains Linux 2.6.21 and works on MIPSEL processor. mmc_spi module works with kernel >2.6.24. I've tried to adapt it to my kernel, but it's ...
0
votes
0answers
32 views

How to detect whether a card has been removed ot driver rmmoded in linux mmc

I would like to know if my device has been removed from slot or the user has been rmmoded the driver from my driver's 'remove' callback. For your information, this is a mmc driver. Please let me know ...
0
votes
1answer
306 views

Import pfx certificate created on XP to Windows 2008

I'm trying to import a certificate generated in XP into the machine store on a Windows 2008 box but get an error close to "network password is incorrect ... or private key needs cryptographic service ...
0
votes
1answer
328 views

problem with add/remove snap-in at mmc + sql server 2005 + sql server 2008

i have a window 7 and i installed sql server 2005 and sql server 2008 together on my os when i run mmc.msc (microsoft management console) the console runs, but when i try add snap-in such as ...

1 2