I've noticed a difference between the list of tasks reported by the wrapper as being active versus those listed in the actual Task Scheduled in Windows. In my specific case, Windows Task Scheduler lists 35 active task while my C# code (which uses the enumerate tasks example) only lists 18.
For what it's worth, the total number of tasks reported matches between the two methods.
Thank you!
Comments: ** Comment from web user: dahall **
For what it's worth, the total number of tasks reported matches between the two methods.
Thank you!
Comments: ** Comment from web user: dahall **
I think I have resolved any discrepancies and will post the code in the release 2.5.5 later today. You can get all active tasks by calling:
```
TaskService ts = new TaskService();
var allTasks = ts.FindAllTasks(x => x.IsActive);
```