.NET Tip: Execute Commands From C# Philadelphia PA

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

Local Companies

InfoCures, LLC
856-675-3700
4300 Haddonfield Road
Pennsauken, NJ
CPA Technology, LLC
610-862-1998
101 W. Elm Street
Conshohocken, PA
Deacom, Inc.
610-971-2278
950 West Valley Road, Suite 3000
Wayne, PA
Quintiq Inc.
610-964-8111
565 E Swedesford Rd #303
Wayne, PA
KasTech Consulting, Inc.
215-702-8155
116 N. Bellevue Avenue
Langhorne, PA
MLM Software
+1-402-524-6464
Berkeley House
Bristol, TX
eClinicalworks EMR Software
+1-395-685-7896
218 Mount Holly
California, AL
The MediGroup, Ltd.
610-666-1955 x12
1308 Egypt Road
Oaks, PA
Ggx Netsystems
(215) 925-6690
Philadelphia, PA
Knox Computer Technology
(215) 247-8690
Philadelphia, PA

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

InfoCures, LLC

Prescriptions for I.T. Success

856-675-3700
4300 Haddonfield Road
Pennsauken, NJ
www.infocures.com

InfoCures develops strategic IT plans and implements solutions that meet the contemporary technology needs of global businesses.


Related Local Events
Hot Java at the Watercooler
Dates: 12/23/2009 - 1/23/2010
Location: Odyssey Travel
Skippack, PA
View Details

Fraser Advanced Information Systems Mixer
Dates: 10/29/2009 - 10/29/2009
Location:
Bethlehem, PA
View Details

PREP 2009: 22nd International Symposium, Exhibit and Workshops
Dates: 7/19/2009 - 7/22/2009
Location: Loews Hotel
Philadelphia, PA
View Details