TS672, WinSer2008-----------------------I can get all the active tasks in the system using TeamSite::WFsystem ->GetActiveTasks();How can I check properties of this task ? I mean when was this task started.What command can I use in the script to delete this task, if its more than 7 days old ?Thanks
my $activation_time = $task->GetActivationTime();if((defined $activation_time) && ($num_days_ago > $activation_time)){ ...iwrmjob $jobids;}