I'm trying to create a task scheduler event that triggers when our application runs into an exception. However, I only want it to look for a certain string of text. So is there a way to craft an XML event filter that will look for part of some text using a wildcard or contains? I've tried this, but it doesn't work:
<QueryList>
<Query Id="0" Path="Application">
<Select Path="Application">
*[EventData[Data and (Data='*non-base 64 character*')]]
</Select>
</Query>
</QueryList>