检查计划任务存在和检查状态

时间:2010-10-27 17:31:35

标签: c#

我使用以下代码更改远程主机上计划任务的“运行方式:”用户名和密码。

Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.FileName = "SCHTASKS.exe";
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;

//p.StartInfo.Arguments = String.Format("/Change /TN {0} /RU {1} /RP {2}",ScheduledTaskName,userName,password);
p.StartInfo.Arguments = String.Format(
    "/Change /S {0} /TN {1} /TR {2} /RU {3}\\{4} /RP {5}", 
    MachineName, ScheduledTaskName, taskPath, activeDirectoryDomainName, userName, password);

p.Start();
// Read the error stream first and then wait.
string error = p.StandardError.ReadToEnd();
p.WaitForExit();

我有几个问题:

  1. 如何检查指定的服务是否存在,如果它不存在,我可以退出该程序。
  2. 如何检查计划任务是否正在运行或已停用?
  3. 如果已禁用计划任务,是否仍可以更改凭据,还是像Windows服务一样,如果禁用凭据,则无法更改凭据?

3 个答案:

答案 0 :(得分:7)

我知道这有点晚了,但我真的很想发布这个。 (这是因为我喜欢简单的代码):D

使用示例:

MessageBox.Show("The scheduled task's existance is " + taskexistance("TASKNAMEHERE").ToString());

<强>功能:

private string taskexistance(string taskname)
{
    ProcessStartInfo start = new ProcessStartInfo();
    start.FileName = "schtasks.exe"; // Specify exe name.
    start.UseShellExecute = false;
    start.CreateNoWindow = true;
    start.WindowStyle = ProcessWindowStyle.Hidden;
    start.Arguments = "/query /TN " + taskname;
    start.RedirectStandardOutput = true;
    // Start the process.
    using (Process process = Process.Start(start))
    {
        // Read in all the text from the process with the StreamReader.
        using (StreamReader reader = process.StandardOutput)
        {
            string stdout = reader.ReadToEnd();
            if (stdout.Contains(taskname)) {
                return "true.";
            }
            else
            {
                return "false.";
            }
        }
    }
}

答案 1 :(得分:6)

查看我在my last answer中给你的链接。 SCHTASKS.exe

的链接

查看名为Querying for Task Information.

的部分

这是检查当前运行状态的代码。您可以使用输出来根据需要进行修改。

Process p = new Process();
p.StartInfo.UseShellExecute = false;
p.StartInfo.FileName = "SCHTASKS.exe";
p.StartInfo.RedirectStandardError = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.CreateNoWindow = true;
p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;

p.StartInfo.Arguments = String.Format("/Query /S {0} /TN {1} /FO TABLE /NH", MachineName, ScheduledTaskName);

p.Start();
// Read the error stream
string error = p.StandardError.ReadToEnd();

//Read the output string
p.StandardOutput.ReadLine();
string tbl = p.StandardOutput.ReadToEnd();

//Then wait for it to finish
p.WaitForExit();

//Check for an error
if (!String.IsNullOrWhiteSpace(error))
{
    throw new Exception(error);
}

//Parse output
return tbl.Split(new String[] { "\n", "\r" }, StringSplitOptions.RemoveEmptyEntries)[1].Trim().EndsWith("Running");

答案 2 :(得分:-1)

只需调用schtask / Query。 / TN选项不起作用只返回ERROR。但是如果你只是使用/ Query,你仍然可以搜索任务的输出。