How is it possible to start a scheduled task that is not locally stored but on another computer on your network, using c#?
It seems that i cannot determine the path
It is not working because you are missing the using closing brackets
using (TaskService tasksrvc = new TaskService("server.Name", "login", "domain", "password")) { Task task = tasksrvc.FindTask("taskname"); task.Run(); }
Thanks.