The following forum(s) have migrated to Microsoft Q&A: Windows HPC Server Job Submission and Scheduling! Visit Microsoft Q&A to post new questions.
ISchedulerTask
task.CommandLine = cmdparams1;
job.AddTask(task1);
ISchedulerTask task2 = job.CreateTask();
task.CommandLine = cmdparams2;
job.AddTask(task2);Here task2 is Depedends on task1. How to Create this Dependency?Thanks in AdvanceMurthy PVASn
You'll need to specify the list of tasks that task2 depends on (by name). To extend your example: