The tag has no wiki summary.

learn more… | top users | synonyms

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
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 ...
1
vote
1answer
83 views

How to add Powershell SnapIn in c#

I have a Powershell Script which is stored in a string called "script" with the content: get-user | out-file C:\Users\user\Desktop\user.txt -append My C# Code: RunspaceConfiguration runConfig = ...
1
vote
1answer
63 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
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
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
2answers
225 views

Referencing external assemblies from PowerShell snap-in

I'm developing a custom PowerShell snap-in, which references another project in the solution. When I try to debug the snap-in (following [these instructions][1]), the assembly fails to load and my ...
1
vote
3answers
1k views

PowerShell: How to mount drive programatically from SnapIn

I am creating a suite of custom cmdlets and providers in C#. I also have a PowerShell SnapIn that takes care of registering the cmdlets and providers. I have exported a console session so that I can ...
0
votes
0answers
28 views

Extend Exchange Managment Console in C#?

is there a way to extend the Management Console MMC Snap-in of Exchange? I wasn't able to find any documentation about that. What I've found were some examples how to write an MMC Snap-In in ...
0
votes
0answers
11 views
+50

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
1answer
52 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
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
201 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
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
343 views

MMC 3.0 snap in development and 'connect to another computer…' dialog

I'm in the process of developing a custom MMC 3.0 snap-in and was wondering if there is some built in SDK/API way of connecting to another computer running the same snap-in? If so, can someone ...
0
votes
3answers
495 views

custom mmc snap-ins icon

Looking into how to provide the icon for my custom mmc snap-ins. Language = c#
0
votes
1answer
88 views

mmc snap-ins extension

Looking for how to create a snap-in extension. I know how to create STANDALONE snap-ins but, also need to look into the snap-in extensions. I'd like to create them in c#.
0
votes
1answer
168 views

Snapin not appearing in the 'Add or Remove Snap-ins' dialog?

Im having issues trying to get a custom snapin to display in the Add/Remove Snap-ins dialog (MMC). Is this done though a registry key?
0
votes
1answer
713 views

What are MMC extension snap-ins?

Looking through our MMC snap-in code I can't get one concept. We have a tree of different class items inserted into MMC snap-in root node and only two of them register themselves as extensions. These ...