C # inicia uma tarefa agendada

Estou tentando escrever um formulário simples em c # que executará uma tarefa agendada em alguns computadores. O que tenho até agora é:

private void button_Click(object sender, EventArgs e)
    {
        try
        {

            for (int i = 0; i < num_of_computers; i++)
            {
                string line;
                line = (" /run /tn myTask /s " + _ReplacerObj.MyComputers[i] + " /u user s /p password");
                proc.WindowStyle = System.Diagnostics.ProcessWindowStyle.Minimized;
                proc.FileName = @"C:\WINDOWS\SYSTEM32\schtasks.exe";
                proc.Arguments = line;
                Process.Start(proc);
            }
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.ToString(), "Error Message!");
        }

Por alguma razão, isso não funciona (IE - a tarefa agendada não foi iniciada). Eu tentei correr do cmd isso:

c:\windows\system32\schtasks.exe /run /tn myTask /s myIp /u user /p password

e funcionou bem. Alguma sugestão? OBRIGADO

questionAnswers(3)

yourAnswerToTheQuestion