在这段代码中,我正在创建批处理文件并通过 c# 运行该文件。运行批处理文件时,如果有任务名xxx,点击yes会显示“你确定要删除任务吗”,执行批处理文件中的剩余行。
是否可以自动给出“是”?如果可以,请给出您的想法。
string schCmd = string.Format("SchTasks /Delete /TN xxx \n schtasks /create /tn xxx " +
"/tr {0} /sd {1} /st {2} /sc DAILY /mo {3} \n PAUSE"
, Server.MapPath("SqlScripts/sqlbackup.bat"), startDate, objAutoBackup.StartTime, objAutoBackup.Occurences);
sw.WriteLine(schCmd);
sw.Close();
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.WorkingDirectory = Server.MapPath("SqlScripts");
proc.StartInfo.CreateNoWindow = true;
proc.StartInfo.FileName = "scheduler.bat";
proc.Start();