I want to run a program with a delay of 10 minutes. I used the Process
to run the program, but after 10 minutes I could not run the command. Could you help me?
Process scriptProc = new Process();
scriptProc.StartInfo.FileName = @"C:\a.vbs";
scriptProc.Start();
scriptProc.WaitForExit();
scriptProc.Close();