I need to create windows Tasks programmatically using ASP.net and C# (Windows Server 2003).When I use following code:\[code\]Process p = new Process();p.StartInfo.FileName = "schtasks.exe";p.StartInfo.Arguments = " /create /tn MyTask /tr notepad.exe /sc DAILY /st 10:00:00 /ru myUsername /rp myPassword ";p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;p.Start();p.WaitForExit();\[/code\]It create task successfully, but task don