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
1
vote
1 answer

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 user from navigating away from the form until the…
Skrymsli
  • 5,173
  • 7
  • 34
  • 36
1
vote
0 answers

Custom InstrumentedAttribute Constructor

Anybody know of a way to pass the namespace parameter to the InstrumentedAttribute constructor in the ProjectInstaller or any installer? It's a Windows Service. The ProjectInstaller is below, but pretty standard. I want to set the…
1
vote
1 answer

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 which I can access programmatically. For example,…
beterthanlife
  • 1,668
  • 2
  • 18
  • 30
1
vote
1 answer

Using f_mount to read and write data to text file

In my Application I need to open, read and write data to a text file using the calls f_open, f_read, and f_write. It is failing to open the .txt file res = f_open(&f_header.file, file_path, FA_OPEN_EXISTING | FA_WRITE | FA__WRITTEN | FA_READ |…
yagami
  • 149
  • 2
  • 12
1
vote
2 answers

Jenkins SSL certificate from Windows AD CS

I am trying to configure Jenkins on Windows with a SLL certificate following these instructions. Instead of using a Digicert certificate, our IT administrator would like to generate a certificate using the Windows AD CS using the certificate snap-in…
tobre
  • 1,347
  • 3
  • 21
  • 53
1
vote
1 answer

SD card wont work in linux, but in uboot does. Error -84 EILSEQ

ARMv7, Kernel 4.0, dw_mmc driver CMD18 Multiblockread and CMD17 Single block read are failing during driver initialisation sequence.. I can not figure out, what the problem is. These CMDs return with -84, which means: * EILSEQ Basic format…
john s.
  • 476
  • 9
  • 21
1
vote
1 answer

MMC (Microsoft Management Console) has detected an error in a snap-in and will unload it

Error showing up in Windows 7 or Windows Server based computers. This error shows up when launching multiple windows system applications such as: Windows Event Viewer Windows Task Scheduler Windows Activation Management Tool The error shows up…
1
vote
0 answers

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 app. Maybe something like OWA 2010 or MS's managed…
Alex
  • 715
  • 1
  • 6
  • 10
1
vote
0 answers

How to uninstall a DLL using InstallUtil /u while running the uninstall wizard of InstallShield Limited Edition?

I am creating an installer using InstallShield 2015 Limited Edition using which I am installing an MMC Snap-in.To install it for the 64-bit console, I am using a custom action on After Register Product which executes the following…
Pallab Pain
  • 134
  • 1
  • 11
1
vote
1 answer

MySQL is not starting - Error 40 in SQL Server Management Studio

When I attempt to start MySQL using XAMPP to have a server running on LocalHost, I am getting the following error logs: 2016-05-17 12:26:09 ccc InnoDB: Warning: Using innodb_additional_mem_pool_size is DEPRECATED. This option may be removed in…
AR06
  • 161
  • 1
  • 2
  • 16
1
vote
1 answer

Strange behavior of Visual Studio

I have a Microsoft Management Console 3 Project built in .Net 2.0, Currently I am Using Visual Studio 2010 to build this project and every thing is working fine, For future I am planning it to move my projects in Visual studio 2013 but I am unable…
Naveed Yousaf
  • 436
  • 4
  • 14
1
vote
1 answer

MMC AsyncStatus (inside MmcListView) is not displaying status

When using the MMC (Microsoft Management Console) 3.0 I cannot get AsyncStatus message shown in console window. I assume it is supposed to be displayed in the status bar of the MMC. When using the StandardVerb (like OnRefresh or OnExpand) at least…
Ole K
  • 754
  • 1
  • 9
  • 32
1
vote
1 answer

WPF TabControl borders not rendering properly in MMC snap-in

I am hosting a WPF TabControl inside of a Windows Form that is part of an MMC snap-in. Everything looks fine on Windows 8.1: But I have an issue in Windows Server 2012 R2: From above, you can see that it increases the border of my TabControl.…
Alexandru
  • 12,264
  • 17
  • 113
  • 208
1
vote
0 answers

How to generate a .pfx file from a .cer file?

I've only the .cer file now i want to convert it to .pfx file. But when i tried to convert via openssl it is asking for private key file? Is it necessary to have a private key file to generate a .pfx file? if not then could you please suggest the…
Sushma
  • 121
  • 4
  • 18
1
vote
0 answers

How to handle double-click in MMC

I have an MmcListView in a custom MMC snap-in I'm developing. I see that there are some standard event handlers for Refresh, Actions, etc. but how do I handle a double-click? Right now, my users have to right-click a result node and click an action.…