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.
0
votes
0answers
21 views
Finding Lifetime for a Memory card(S.M.A.R.T)
I would like to findout lifetime for a memory Card. So i need to fetch below information from the device(Memory card) using IOCTL calls.
a)Total block write count
b)program erase count
But I am not ...
0
votes
0answers
59 views
fsl i.mx6 burning ,when start the burning android system appear Initialize error
U-Boot 2009.08 ( 3月 05 2013 - 17:20:28)
CPU: Freescale i.MX6 family TO1.2 at 792 MHz
Temperature: 34 C, calibration data 0x5774e769
mx6q pll1: 792MHz
mx6q pll2: 528MHz
mx6q pll3: 480MHz
mx6q ...
0
votes
1answer
55 views
APNS: The certificate is revoked
My iPad app uses an ASP.Net server to send APNS messages (using MoonAPNS) to the app when a new document is uploaded to the server.
I used MMC to import new certificates last week (Thursday) and had ...
-3
votes
4answers
66 views
Why do I always get an ArrayIndexOutOfBoundsException? [closed]
This code is taken from a common algorithms book. The book uses an array starting from 1 instead of 0 for m but starts from 0 for p. How do I solve it ??
These are the errors:
Exception in thread ...
0
votes
1answer
24 views
Localizing MMC SnapInSettings
I'm trying to localize
[SnapInSettings("GUID",
DisplayName = ApplicationName, <-- this
Description = ApplicationDescription, <-- this
Vendor = VenderName, <-- this
...
0
votes
0answers
25 views
How can A WebPage interact with the Webbrowser of a MMC Snap-in in C++?
I have a WebPage node in a MMC Snap-in, I want to this page (using JavaScript) interact with the MMC snap-in itself. It is possible to do that? How?
Note: I'm developing it in C++.
0
votes
0answers
25 views
manifest file is ignored in mmc 2.0 snap-in. How to fix?
I've got an mmc 2.0 snap-in, that should use 6th version of common-controls (winXP style). However it does not. Any buttons and other controls look like in Windows 98. However the SnapIn DLL has ...
0
votes
0answers
76 views
How to format sd/mmc partition to cramfs
First, is it possible to format a sd/mmc partition to cramfs filesystem? If the answer is yes please show me how can I perform that.
Note: I am not asking about how to create a cramfs image, I have ...
0
votes
1answer
151 views
MMC SnapIn and .Net 4.x
We recently upgraded all of our projects to Visual Studio 2012 and .Net 4.5. Most of our projects have custom MMC snapins that handle product configuration. I've now learned that MMC 3.0 doesn't ...
2
votes
1answer
44 views
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 ...
0
votes
0answers
52 views
Unexplained MMC crashes when loading some of FormViews
I'm experiencing an awkward behavior by the MMC just after FormView::OnInitialize()'s execution.
What makes it odd is the fact that under Windows-7 it works perfectly normal, but on 2003 it crashes ...
0
votes
1answer
216 views
server 2008 certificate private key permissions
I am having a strange problem which I've googled and googled with no result. I'm attempting to setup a certificate for a wcf service application on windows server 2008 R2. I've imported the ...
0
votes
1answer
349 views
How to create a Private-Key exportable self-signed certificate?
I've tried the below template which creates the certificate and installs it in the localmachine Personal certificate store:
makecert -sk <> -iv RootCATest.pvk -n "CN=<>" -ic RootCATest.cer -sr ...
0
votes
3answers
780 views
How to check user credentials in Powershell, to find out if they belong to certain group?
I am trying to implement Taskpads (MMC's) for remote admins. Since I dont want to keep them on their workstations I am keeping them on a file server and sharing them there. On the client side (i.e on ...
0
votes
1answer
292 views
connect compmgmnt.msc to remote host using c#
how can i use compmgmnt.msc to remote host using c#.
i found this...
execute this command in "cmd.exe" it is working and ask you for The password:
/user:administrator \"mmc.exe compmgmt.msc ...
0
votes
0answers
69 views
Windows XP: apply different IPSec rules per user
I'm relatively new to IPSec (and Windows XP MMC), so I thought it might be a good idea to ask the question here.
We have a pc at our gas station which is primarily used for booking trailers, but the ...
1
vote
0answers
568 views
In Linux SD/MMC driver, It prints “Timeout waiting for hardware interrupt” for many times during boot
I'm programing with the linux kernel SD/MMC driver, and I know few about it . The kernel print the regesters logs below . From the dump regester log , I cannot detect what's the problem of the MMC ...
0
votes
1answer
56 views
Update web.config from separate administrative website
We have historically created MMC snap-ins to update custom sections in web.config for our ASP.NET MVC application. These custom sections deal with theming, backend connection parameters, navigation, ...
0
votes
2answers
183 views
Cmd and mmc with whitespace paths
I'm trying to create a shortcut to an .msc file, but I want to open the file with another account.
The closest I've come is:
runas /savecred /user:PATHy\USERx "mmc \\folder\subfolder\folder with ...
0
votes
0answers
85 views
how to know which userspace process is writing to sd card?
Here is the kernel stack generated using WARN_ON in sdhci_send_command**
*****WARNING: at /vobs/iandroid/src/kernel/drivers/mmc/host/mx_sdhci.c:495 sdhci_send_command+0x150/0x86c()
Modules linked in: ...
0
votes
1answer
726 views
SD card data sometimes NOT seen on PC when connected in USB mass storage mode (via phone) [duplicate]
Possible Duplicate:
SDCard content exist but cant see them
Phone running Linux Kernel(2.6.31) with SD card inserted.
[ISSUE] When data is written to SD card (write syscall) the write ...
0
votes
1answer
101 views
Moving MMC snap-in from VS2008 to 2010
This is not so much a question but rather a comment since I've found the answer already.
Problem:
I was moving a VS2008 project to VS2010, which uses the Microsoft.ManagementConsole namespace. The ...
0
votes
0answers
22 views
Why is the column configuration applied to all MmcListViews?
I'm writing a program to list information about an access log and I need to create it as a MMC-Snap-In.
The problem is, I have a class that inherits from the MmmcListView and gets used multiple times ...
1
vote
0answers
83 views
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. ...
0
votes
0answers
67 views
MMC How to dragdrop from result pane custom view to scope node
My application is installed in MMC. It was originally developed in C++, now I have extended one of the nodes with a MMC 3.0 C# node. However I am not able to drag drop items from the winforms listview ...
0
votes
0answers
59 views
How to extend functionality of an existing MMC 2.0 SnapIn?
I've a MMC 2.0 primary Snapin that consists of a number of child scope nodes as shown below.
Root Node
- Child-1
- Child-2
- - Function-A
- - Function-B
- Child-3
Problem ...
1
vote
4answers
565 views
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 ...
0
votes
0answers
176 views
how can a c# server talk with an Android java client using self-signed certificates
In my attempt to do Self-signed certificate communication
i read and successfully executed the following tutorial
Creating self-signed certificates for use on Android
This works fine if server and ...
0
votes
1answer
170 views
How to use a scripting language to change settings in MMC Snapin
I've been building a script to setup a MSSQL server in PowerShell, but I'm stuck at this point. I can't figure out where the SQL Server Configuration Manager SnapIn is saving the data and I can't ...
1
vote
0answers
917 views
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 ...
0
votes
1answer
346 views
Where should I reference Microsoft.ManagementConsole.dll from?
I'm trying to follow the instructions located at How-To Create a Hello World Snap-in using Visual Studio 2010 and it tells me I need to reference Micorosft.MagamentConsole.dll which can be found in ...
1
vote
1answer
225 views
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
0
votes
1answer
97 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). ...
1
vote
1answer
184 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
157 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 ...
0
votes
1answer
196 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
169 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
92 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
295 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
2answers
788 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 ...
1
vote
3answers
2k 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
1answer
154 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 ...
1
vote
1answer
207 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 ...
0
votes
0answers
165 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
155 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 ...
1
vote
1answer
182 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
416 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
2answers
318 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 ...
1
vote
1answer
270 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 ...
0
votes
1answer
158 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 ...
