I'm trying to start a task that gets triggered by specific events. The XML configuration for the filter I'm using is the following:
<QueryList>
<Query Id="0" Path="Security">
<Select Path="Security">
*[System[(Level=4 or Level=0) and (EventID=5145)]]and
*[EventData[Data[@Name='AccessList'] and (Data='%%1538
				%%4416
				%%4419
				%%4423
				')]]and
*[EventData[Data[@Name='ShareName'] and (Data='\\*\Justin-Archiv')]]
</Select>
</Query>
</QueryList>
The configuration works fine when used with the event viewer. However the task doesnt get triggered if a new event matching the criteria happens. After removing the
*[EventData[Data[@Name='AccessList'] and (Data='%%1538
				%%4416
				%%4419
				%%4423
				')]]
part, the event gets triggered. So there has to be a problem with that part.
Thanks alot in advance!