Running command in command prompt from .NET
-
HI, Can any one guide me how to run commands from a .Net Application developed in C# at Command prompt(i.E C:\>) Any links on it would also be helpful
-
HI, Can any one guide me how to run commands from a .Net Application developed in C# at Command prompt(i.E C:\>) Any links on it would also be helpful
Hi, try
Process.Start("cmd.exe", args)
If that does not do what you want, have a look at ProcessStartInfo class and useProcess.Start(psi)
:)Luc Pattyn [Forum Guidelines] [My Articles]
Fixturized forever. :confused:
-
HI, Can any one guide me how to run commands from a .Net Application developed in C# at Command prompt(i.E C:\>) Any links on it would also be helpful
-
HI, Can any one guide me how to run commands from a .Net Application developed in C# at Command prompt(i.E C:\>) Any links on it would also be helpful