Skip to content

Instantly share code, notes, and snippets.

@dennisdoomen
Created April 12, 2021 17:14
Show Gist options
  • Save dennisdoomen/e7622ae347e1f4223d7b3f1020596bd3 to your computer and use it in GitHub Desktop.
Save dennisdoomen/e7622ae347e1f4223d7b3f1020596bd3 to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
var process = Process.Start("d:\\tmp\\test.bat");
process.WaitForExit();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment