在Windows事件查看器中手動編輯XML過濾器的查詢,我可以在其中找到數據的字符串完全匹配的事件:使用XPath開始 - 使用或含有功能來搜索Windows事件日誌
<QueryList>
<Query Id="0" Path="Application">
<Select Path="Application">*[EventData[Data and (Data="Session end: imzcjflrrsq1sfdk3okc4jpf")]]</Select>
</Query>
</QueryList>
現在,我想做一個部分匹配:
<QueryList>
<Query Id="0" Path="Application">
<Select Path="Application">*[EventData[Data and (Data[starts-with(.,"Session")])]]</Select>
</Query>
</QueryList>
事件日誌給我的錯誤:
The specified query is invalid
待辦事項我有語法錯誤?
多倒黴! – abatishchev 2012-04-03 12:04:29
真的很傷心......這麼多限制 – unruledboy 2013-03-26 09:59:56