View Full Version : how to programmatically invoke MMC in asp.net?
Do anybody know how to display user detail dialog (at the Active Directory Users and Computers" tool or MMC) by using asp.net or vb.net? i need to call the user detail dialog through asp.net, so that i can update or insert user detail like first name, last name...!!! Thanks!!
Vishal Gupta
09-13-2005, 02:43 AM
this ex shows how to open Calculator in .net, similarlay u can open
----------------------------------------------------------------
Calculator
The option to provide a calculator to the end user on the click of a button can be very useful. The calculator program can be invoked from command line using the command "calc".
Add the following code to the event handler for the button's Click event as shown below. Details explaining the code follow the code listing.
System.Diagnostics.Process proc = new System.Diagnostics.Process ();
proc.EnableRaisingEvents=false;
proc.StartInfo.FileName="calc";
proc.Start();
Code Listing: Invoke the calculator from a C# program
---------------
enjoy
:beer:
vBulletin v3.0.3, Copyright ©2000-2012, Jelsoft Enterprises Ltd.