.NET Tip: Execute Commands From C# Dallas TX

Have you ever needed to execute a system command from your application? You can accomplish this easily with C#.

Local Companies

Videotex Systems
972 231 9200 x124
10255 Miller Road
Dallas, TX
elKore Inc
1-877-355-6731
12225 Greenville Avenue
Dallas, TX
Information Processing Corporation
972-404-9244
13747 Montfort, Suite 300
Dallas, TX
Maxtrus Micro
(800) 910-2380
4781 Snow Dr
Mesquite, TX
Spatial Data Inc.
972-791-0911
4545 Fuller Drive
Irving, TX
C. Pitman Baker & Associates
972-579-1642 X 227
1431 Greenway Dr.
Irving, TX
In2 Solutions Inc
(972) 494-7400
3534 W Walnut St
Garland, TX
P O Express Inc
(972) 272-0603
3717 Burning Tree Ln
Garland, TX
Sixred, Inc.
(972) 365-3437
15950 North Dallas Parkway
Dallas, TX
Freeman Software
(972) 840-1119
506 Valencia Dr
Garland, TX

provided by: 
Originally published at Internet.com


I usually run across the need to execute commands or run applications during the installation or configuration of an application. I've found this technique very useful in place of using batch files. You have a much more robust environment to work with and you don't have to worry about someone modifying your batch file. For this example, I'm just going to show you how execute a command that you would normally use in a Command Prompt. I normally include a function like the following in a static utility class so that it is accessible from anywhere in the application. public static int ExecuteCommand(string Command, int Timeout) { int ExitCode; ProcessStartInfo ProcessInfo; Process Process; ProcessInfo = new ProcessStartInfo("cmd.exe", "/C " + Command); ProcessInfo.CreateNoWindow = true; ProcessInfo.UseShellExecute = false; Process = Process.Start(ProcessInfo); Process.WaitForExit(Timeout); ExitCode = Process.ExitCode; Process.Close(); return ExitCode; }

The key here is the ProcessStartInfo class that gives you access to a process to execute your command. Here, I am telling the process not to create a window and to use the operating system shell to start the process. There are many more options available for ProcessStartInfo, so make sure you check them out to see what you can take advantage of in your application. In this, case I'm telling the process to execute cmd.exe. The /C parameter tells cmd.exe to execute the following string and then terminate. Again, cmd.exe has many more options that you should explore. The code then starts the process and waits for it to wither complete or time out. Finally, the exit code of the process is returned from the function.

I hope that you can see how easy it is to execute commands from within your application and that this may spark additional ideas of how you can enhance your applications.

About the Author

Jay Miller is a Software Engineer with Electronic Tracking Systems, a company dedicated to robbery prevention, apprehension, and recovery based in Carrollton, Texas. Jay has been working with .NET since the release of the first beta and is co-author of Learn Microsoft Visual Basic.Net In a Weekend. Jay can be reached via email at jmiller@sm-ets.com.

Author: Jay Miller

Read article at Internet.com site

Featured Local Company

Videotex Systems

972 231 9200 x124
10255 Miller Road
Dallas, TX
http://www.videotexsystems.com/

Related Local Events
Unconventional Gas Conference & Exhibition
Dates: 9/29/2009 - 10/1/2009
Location: Fort Worth Convention Center
Fort Worth, TX
View Details

Tech Titans Fast Tech Awards Gala
Dates: 8/28/2009 - 8/28/2009
Location: Renaissance Dallas Richardson Hotel
Richardson, TX
View Details

AHS International 65th Annual Forum and Technology Display
Dates: 5/27/2009 - 5/29/2009
Location: Gaylord Texan Resort & Convention Center
Grapevine, TX
View Details