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
3
votes
3 answers

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 examples in the SDK, but I can't seem to find anything…
Hector Sosa Jr
  • 4,230
  • 27
  • 30
3
votes
1 answer

How to debug snapin, property pages in mmc?

I am new to snapin and property pages. I have a source code that is developed in Visual basic 6.0 of snapin(userControl) and property pages that are referenced in snapin. These will be run in mmc. Now how can i debug this snapin and property pages…
Santhanam
  • 113
  • 11
3
votes
4 answers

OpenFileDialog path issue

I have a OpenFileDialog which should open up a specific path say %ProgramData% when 'Browse' clicked for the first time the user uses the application. And for all successive terms, it should open up the last used folder. I tried: …
dushyantp
  • 4,398
  • 7
  • 37
  • 59
3
votes
1 answer

MMC console - certificate private key handling

We have an application that needs to access the private key of a certificate. We also have have a Nightlybuild that sets the certificate up (imports it from a pfx file using certmgr). This works really fine as long as the setup of the certificate…
msaladin
  • 405
  • 1
  • 5
  • 12
2
votes
3 answers

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 snap-ins to complete..." There's a second dialog box in…
Jargs
  • 675
  • 3
  • 10
  • 22
2
votes
2 answers

How to open the Property dialog of selected objects in Management Console?

I am searching for the possibility to open default property dialogues for particular Windows objects, like: the property dialogue for a particular service in services.msc the property dialogue for a particular scheduled taks in taskschd.msc etc. I…
tar
  • 156
  • 2
  • 13
2
votes
0 answers

Write to eMMC boot0 partition from u-boot

I am using eMMC based on 5.1 Version, which has boot0, boot1, rpmb and userarea. Inorder to write to eMMC from u-boot, mmc commands can be used. mmc read commands is of below form. $mmc read addr blk# cnt if i give blk to 0x0, where it will write…
anikhan
  • 1,147
  • 3
  • 18
  • 44
2
votes
1 answer

What is the SD card erase process?

my SD card cannot work after erase, what's the matter? My SD card is working properly, then after erase 4 blocks of memory, send CMD18 it does not spit data,And the host does not get "cmd_end" MIE_EVENT。(Command transmission normal) What I'm more…
JIyhon
  • 21
  • 3
2
votes
0 answers

emmc drivers kernel linux crash when it is configured as loadable module

I have make a change to have mmc drivers loadable kernel module but I got a kernel crash when I tried to unload mmc_host_module using rmmod mmc_host_module. NB: I have deactivated CONFIG_MMC_CLKGATE. All insert command work correctly: insmod…
developer
  • 4,744
  • 7
  • 40
  • 55
2
votes
1 answer

MMC process immediately closing, can't link to windows forms

The end goal of what I am trying to do is get the MMC (Microsoft Management Console) Computer Management snap-in (compmgmt.msc) process to be embedded into a Windows Form, or a workaround that will treat it like a modal pop-up menu. Right now, I am…
Talset
  • 61
  • 2
  • 18
2
votes
0 answers

VBScript : Digitally sign files in the folder throwing error "Cannot find the certificate and private key to use for decryption"

I have created Signer.vbs file for do this functionality and below is the VBScript code to sign all files digitally for particular folder. This folder contains scripting files. Dim sCertificate Dim sFolder Dim sStore Dim objSigner Dim objFSO Dim…
Keval Gangani
  • 1,326
  • 2
  • 14
  • 28
2
votes
1 answer

eMMC vs MMC communication protocol

I am trying to communicate with an eMMC flash memory. I already have a library for connecting to MMC flash memory which is based on SPI protocol. In new eMMCs SPI protocol is not supported. I want to ask is the protocol in MMC different to eMMC…
2
votes
1 answer

Component Services - Transactions tab missing. How to show it?

I'm trying to change the DCOM timeout for my COM component. This page and virtually all other sources on the Internet speak of a Transactions tab in Component Services where I could change the timeout for my particular component. But on my Win10 x64…
adigostin
  • 633
  • 7
  • 20
2
votes
3 answers

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 versions of Windows Server 2003 prior to R2, and can't…
Gerald
  • 23,011
  • 10
  • 73
  • 102
2
votes
0 answers

Get information about the currently extended GPO

We are currently developing an MMC SnapIn Extension, that extends multiple group policy objects (GPOs), like you can see it in that image below: Group Policy Management Editor - Extended Thecnology is MMC 3.0, .NET 3.5, C#, VS2013. The extension is…
Hix
  • 29
  • 3
1 2
3
12 13