示例#1
0
 public static void ExecuteInBackgroundPID(string command, out int id, bool administrator = false, bool waitForExit = false, string workingDirectory = "")
 {
     ShellUtils.ExecuteInBackgroundPID(FILENAME, command, administrator, waitForExit, workingDirectory, out id);
 }
示例#2
0
 public static void ExecuteInBackground(string filename, string arguments, out int id, bool administrator = false, bool waitForExit = false, string workingDirectory = "")
 {
     ShellUtils.ExecuteInBackgroundPID(filename, arguments, administrator, waitForExit, workingDirectory, out id);
 }