EventLogPropertySelector 未从 PowerShell 中的事件对象返回扩展数据
Posted
技术标签:
【中文标题】EventLogPropertySelector 未从 PowerShell 中的事件对象返回扩展数据【英文标题】:EventLogPropertySelector Not Returning Extended Data From Event Object In PowerShell 【发布时间】:2021-06-30 00:35:59 【问题描述】:我的短期目标是从名为 Microsoft-Windows-TerminalServices-**LocalSessionManager/Operational
的日志中收集提供者 Microsoft-Windows-TerminalServices-LocalSessionManager
的事件 ID 40 和 42,然后根据 Session/SessionID 对它们进行排序。虽然我可以尝试解析消息属性,但我正在尝试使用 EventLogRecord 的 GetPropertyValues 方法,该方法采用 System.Diagnostics.Eventing.Reader.EventLogPropertySelector
参数。此外,对于事件 40 的消息,会话 ID 第一个显示为“Session”,而对于事件 41 的消息,会话 ID 显示为第二个标记为“SessionID”。
Name | MemberType | Definition |
---|---|---|
GetPropertyValues | Method | System.Collections.Generic.IList[System.Object] |
我看到在 2018 年 Peter-Core 和 Mathias R. Jessen 都给出了如何做到这一点的答案。按照他们的例子,我查看了事件提供者的事件模板。
(Get-WinEvent -ListProvider Microsoft-Windows-TerminalServices-LocalSessionManager).Events|Where-object@(40,42) -contains $_.ID
Id : 40
Version : 0
LogLink : System.Diagnostics.Eventing.Reader.EventLogLink
Level : System.Diagnostics.Eventing.Reader.EventLevel
Opcode : System.Diagnostics.Eventing.Reader.EventOpcode
Task : System.Diagnostics.Eventing.Reader.EventTask
Keywords :
Template : <template xmlns="http://schemas.microsoft.com/win/2004/08/events">
<data name="Session" inType="win:UInt32" outType="xs:unsignedInt"/>
<data name="Reason" inType="win:UInt32" outType="xs:unsignedInt"/>
</template>
Description : Session %1 has been disconnected, reason code %2
Id : 42
Version : 0
LogLink : System.Diagnostics.Eventing.Reader.EventLogLink
Level : System.Diagnostics.Eventing.Reader.EventLevel
Opcode : System.Diagnostics.Eventing.Reader.EventOpcode
Task : System.Diagnostics.Eventing.Reader.EventTask
Keywords :
Template : <template xmlns="http://schemas.microsoft.com/win/2004/08/events">
<data name="User" inType="win:UnicodeString" outType="xs:string"/>
<data name="SessionID" inType="win:UInt32" outType="xs:unsignedInt"/>
</template>
Description : End session arbitration:
User: %1
Session ID: %2
作为测试,我创建了以下内容来尝试从事件 ID 42 中获取会话 ID:
$strComputerName='PMV-SC01'
<# For those wanting to build xmlFilters try something like the following as it allow you to create them more dynamically
$xmlFilterBase=[xml]'<QueryList><Query Id="0"></Query></QueryList>'
## in a loop ##
$xmlSelect=$xmlFilter.CreateElement("Select")
$xmlSelect.SetAttribute("Path","$Logname")
$xmlSelect.set_InnerText("*[System[$($ProviderName)TimeCreated[@SystemTime>='$StartTime' and @SystemTime<='$EndTime']]]")
$xmlFilter.QueryList.Query.AppendChild($xmlSelect)|Out-Null
$xmlSelect=$Null
## end loop ##
#>
#I used the filter below to simplify the testing.
$xmlFilter=@"
<QueryList><Query Id="0" Path="Microsoft-Windows-TerminalServices-LocalSessionManager/Operational"><Select Path="Microsoft-Windows-TerminalServices-LocalSessionManager/Operational">*[System[TimeCreated[@SystemTime>='2021-06-28T22:00:00.000Z' and @SystemTime<='2021-06-28T23:00:00.000Z']]]</Select></Query></QueryList>
"@
$WinEvents=Get-WinEvent -ComputerName $strComputerName -FilterXml $xmlFilter -Oldest|Where-object$_.Id -eq 42
$WinEvents.count
# output is 10
$SelectorStrings= [String[]]@(
'Event/EventData/Data[@name="SessionID"]'
)
$PropertySelector= [System.Diagnostics.Eventing.Reader.EventLogPropertySelector]::new($SelectorStrings)
$WinEvents|ForEach-Object$TheSessionIds=@();$TheSessionIds+=$_.GetPropertyValues($PropertySelector)
$TheSessionIds.count
#output is 1
# All of the follow also return nothing:
$WinEvents[1].GetPropertyValues($PropertySelector)
$WinEvents.GetPropertyValues($PropertySelector)
$1WinEvent=$WinEvents[0]
$1WinEvent.GetPropertyValues($PropertySelector)
没有错误信息。 GetPropertyValues() 方法不返回任何内容。 PowerShell 版本:5.1.14393.2457
Windows | Edition | Version | OS Build |
---|---|---|---|
Windows | Server 2016 Standard | 1607 | 14393.2457 |
(Get-WindowsVersion credit
)
我的长期目标是生成类似于以下输出的内容。这篇文章的请求是帮助从 GetPropertyValues 方法中获取值。我也想在其他项目中使用这种方法。
SessionID | User | TimeCreated | ID | Code |
---|---|---|---|---|
12 | MYDOMAIN\User.Name | 2021-06-28 07:35:54.4321 | 42 | |
12 | 2021-06-28 15:35:54.4321 | 40 | 0 | |
13 | MYDOMAIN\Other.User | 2021-06-28 11:12:44.1234 | 42 | |
13 | 2021-06-28 13:01:12.5678 | 40 | 0 |
【问题讨论】:
对于其他人,在查看、排序或过滤从Get-WinEvent
返回的事件对象时,xml 过滤器需要使用 UTC 时间,因为存储在事件中的时间似乎也是 UTC。
【参考方案1】:
如果您检查示例 XML 记录,您会发现节点的路径不在 /EventData/Data 下。这需要一些摆弄,但这对我来说非常完美。
$xmlFilter = @"
<QueryList>
<Query Id="0" Path="Microsoft-Windows-TerminalServices-LocalSessionManager/Operational">
<Select Path="Microsoft-Windows-TerminalServices-LocalSessionManager/Operational">*[System[(EventID=40 or EventID=42)]]</Select>
</Query>
</QueryList>
"@
$SelectorStrings= [String[]]@(
'Event/UserData/EventXML/User',
'Event/UserData/EventXML/Session',
'Event/UserData/EventXML/Reason'
)
Get-WinEvent -FilterXml $xmlFilter | ForEach-Object
switch ($_.id)
40 $SelectorStrings[1] = 'Event/UserData/EventXML/Session'
42 $SelectorStrings[1] = 'Event/UserData/EventXML/SessionID'
$PropertySelector= [System.Diagnostics.Eventing.Reader.EventLogPropertySelector]::new($SelectorStrings)
$user,$sessionID,$reason = $_.GetPropertyValues($PropertySelector)
[PSCustomObject]@
SessionID = $sessionID
User = $user
TimeCreated = $_.TimeCreated
ID = $_.ID
Code = $reason
【讨论】:
我是如此接近!我尝试了以下方法,但从未完全按照您的建议。谢谢你。[string[]]$Propq=@('Event/UserData/EventXML[@Name="SessionID"]') [string[]]$Propq=@('Event/UserData/EventXML')
我也试过了,很惊讶它没有用。我相信不同之处在于额外的命名空间 Event_NS。不客气!以上是关于EventLogPropertySelector 未从 PowerShell 中的事件对象返回扩展数据的主要内容,如果未能解决你的问题,请参考以下文章