Questions tagged [mmc]

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.

The Microsoft Management Console (MMC) is a Windows application used by administrators and power users to administer a Windows system. Administration of varying domains -- such as event logs or starting and stopping [Windows service]s -- can be done within the same console.

MMC hosts components called snap-ins. These are implemented Snap-ins are extensions to the MMC executable, which hosts them and provides a window frame into which they expose their user interfaces. Traditionally, snap-ins have been implemented as COM components, but in recent releases of Windows, support is provided for snap-ins written for the managed runtime.

181 questions
2
votes
1 answer

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
Jonathan Allen
  • 68,373
  • 70
  • 259
  • 447
2
votes
0 answers

How MMC snap-ins expose remote capabilites

I have built a custom MMC snap-in, and I was wondering what the standard way is to extend my snap-in to have remote capabilities. For example, the default Windows Event Viewer snap-in allows you to connect to Another computer when you add it into…
Alexandru
  • 12,264
  • 17
  • 113
  • 208
2
votes
2 answers

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 installutil.exe to install the snap-in but I couldn't find it in…
2
votes
1 answer

Where to install SSL Certificate in MMC console for mutual (peer-peer) authentication

I had to do a mutual SSL authentication for peer-peer communication not localhost(from one machine to another). This is done asynchronously using Microsoft.Net Socket Communication Class along with SslStream class BeginAuthenticateAsServer and…
B B
  • 21
  • 2
2
votes
3 answers

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 window from being updated and unfreeze it…
Yonatan Karni
  • 977
  • 2
  • 13
  • 32
2
votes
3 answers

Is there a WIX extension for install MMC snapin/extension?

It appears there was previously an extension for MMC in Wix2 advising the xmlns http://schemas.microsoft.com/wix/MmcExtension - attempting to read this URL results in an error page currently. I cannot seem to locate equivalent for Wix3.6, is this…
Greg Domjan
  • 13,943
  • 6
  • 43
  • 59
1
vote
1 answer

c# creating msc file

How can I create *.msc file? I see a lot of articles about creating snap-in's. My goal is to create msc file so people can double click it and bring defined snap-in Thanks
eddyuk
  • 4,110
  • 5
  • 37
  • 65
1
vote
1 answer

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 and it does not show up in MMC Console i.e., it's…
dchappelle
  • 1,580
  • 2
  • 13
  • 22
1
vote
1 answer

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?
Murat Korkmaz
  • 1,329
  • 2
  • 19
  • 37
1
vote
1 answer

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 option), the name(s) of the snap-ins are displayed on…
1
vote
1 answer

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 visible on Windows XP. We researched on the…
Vikesh
  • 2,018
  • 6
  • 23
  • 33
1
vote
1 answer

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.
Meraj
  • 426
  • 3
  • 10
  • 22
1
vote
1 answer

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 to…
Meraj
  • 426
  • 3
  • 10
  • 22
1
vote
1 answer

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 of the Microsoft blogs, a sample was included in…
Ann L.
  • 13,760
  • 5
  • 35
  • 66
1
vote
1 answer

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 how can I get the window handle? Thanks.
Dig
  • 3,850
  • 3
  • 27
  • 33