vote up 4 vote down star

Just like the subject states. I want to be able to run iisreset, batch files, etc. from the a console application. Can I/How do I do it?

Thanks,

Kyle

flag

3 Answers

vote up 5 vote down check

That's quite possible, for example:

 System.Diagnostics.Process.Start(@"C:\listfiles.bat");
link|flag
vote up 3 vote down

Hi, Check this example from C# Station

using System;
using System.Diagnostics;

namespace csharp_station.howto
{
    /// <summary>
    /// Demonstrates how to start another program from C#
    /// </summary>
    class ProcessStart
    {
        static void Main(string[] args)
        {
            Process notePad = new Process();

            notePad.StartInfo.FileName   = "notepad.exe";
            notePad.StartInfo.Arguments = "ProcessStart.cs";

            notePad.Start();
        }
    }
}
link|flag
vote up 2 vote down

You can also do this:

  System.Diagnostics.ProcessStartInfo info = new System.Diagnostics.ProcessStartInfo();
  info.UseShellExecute = true;
  info.FileName = "iisreset";
  System.Diagnostics.Process.Start(info);



  Console.ReadLine();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.