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.

Signature
moondaddy@newsgroup.nospam
CSharper - 31 Mar 2008 19:53 GMT
> 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
[quoted text clipped - 4 lines]
> --
> moonda...@newsgroup.nospam
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.
thomasnguyencom - 31 Mar 2008 19:55 GMT
> 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
[quoted text clipped - 4 lines]
> --
> moonda...@newsgroup.nospam
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
Steven Cheng [MSFT] - 01 Apr 2008 04:56 GMT
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:
msdnmg@microsoft.com.
==================================================
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.
--------------------
>From: "moondaddy" <moondaddy@newsgroup.nospam>
>Subject: How to run script in command prompt using .net code
>Date: Mon, 31 Mar 2008 13:38:53 -0500
>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.