That said, thanks for an amazing library!
Comments: ** Comment from web user: corrego **
I am running win7 pro sp1 x64 (spanish). I am watching a folder, no filters. This is my init code:
```
watcher = new TaskEventWatcher();
watcher.BeginInit();
watcher.Folder = "\\Automation";
watcher.IncludeSubfolders = true; // if i don't include this line, i don't get any events
// Only watch for task events that are informational
watcher.Filter.EventLevels = new int[]
{(int)StandardEventLevel.LogAlways, (int) StandardEventLevel.Informational};
// Assign an event handler for when events are recorded
watcher.EventRecorded += Watcher_EventRecorded;
// Start watching the folder by enabling the watcher
watcher.Enabled = true;
watcher.EndInit();
```
Anything else I can do to help? Thank you