my tasks scheduled on my Windows system grew over the years and I want to clean up now. I thought about having a AHK script which would be much nicer to handle. However, scheduled tasks have a neat feature: you can specify a Windows event (https en.wikipedia.org /wiki/Windows_Task_Scheduler) Broken Link for safety as trigger.
I did not see that AHK does allow monitoring of such events (based on the Windows event log). It does not have such a trigger option, right? Might not be a bad feature in my opinion

Please allow me to ask, if someone of you already created a workaround and got a working API call. There seem to be multiple options, e.g.
- https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-notifychangeeventlog
- https://docs.microsoft.com/en-us/windows/win32/api/winevt/nf-winevt-evtsubscribe
Yes, it would be easily possible to poll/query regularily, e.g. via "winmgmts". However, I tend to not like such "dirty poll workarounds".
Thanks in advance!