c# - Can I use the command line, or run a batch file from managed code? (.NET) -


Just like topic states. I want to be able to run from the console application to iisreset, batch files, etc. How can I do this?

This is quite possible, for example:

  System Diagnostics Process. Start (@ "c: \ listfile.bat");  

Comments