How to run script in command prompt using .net code

M

moondaddy

I have a c# 3.0 solution where I need to periodically run a script at the
command prompt for certain tasks. I would like to be able to do this from
executing some .net code rather than manually coping the path to the script
file into the command prompt and then running it. How can this be done?

Thanks.
 
C

CSharper

I have a c# 3.0 solution where I need to periodically run a script at the
command prompt for certain tasks.  I would like to be able to do this from
executing some .net code rather than manually coping the path to the script
file into the command prompt and then running it.  How can this be done?

Thanks.

One thing you can do is have a c# solution with a timer and based on
the timer you set you can create a Process (using System.Diagnostics)
where you can pass the command line aruguments that you want to run
and run it. Thats it.
 
T

thomasnguyencom

I have a c# 3.0 solution where I need to periodically run a script at the
command prompt for certain tasks. I would like to be able to do this from
executing some .net code rather than manually coping the path to the script
file into the command prompt and then running it. How can this be done?

Thanks.

If you'd like to run the script pre- or post-build, you can add it in
the "ProjectName" > Properties > Build Events area. There are a few
options of when you want to run the post-build event.

goodluck,
-tom
 
S

Steven Cheng [MSFT]

Hi Moondaddy,

In .net framework, the "System.Diagnostics.Process" class can help you
programmtically launch and execute another program. For your scenario, you
can use it to execute the cmd.exe program and add additional parameters to
the process.

here is a good article which provide an encapsulated version of using
Process class to execute cmd command:

#Invoking Command Lines Programmatically
http://www.codeguru.com/csharp/csharp/cs_misc/userinterface/article.php/c850
3/

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead


Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
(e-mail address removed).

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top