我需要从Windows 7工作站中提取本地登录/注销列表。我有一个 evtx 格式的安全事件日志的保存副本,但我遇到了一些问题。
以下 powershell 提取 ID 为 4624
或 4634
的所有事件:
Get-WinEvent -Path 'C:pathtosecuritylog.evtx' | where {$_.Id -eq 4624 -or $_.Id -eq 4634}
然后我想只过滤logon type = 2 (local logon)
.通过管道将其传送到:
| where {$_.properties[8].value -eq 2}
但是,似乎删除了所有id=4634
(注销(事件。
即使对于事件id = 4624
事件,也没有用户 ID 存在。例如管道到:
| select-object -property Timecreated,TaskDisplayName,MachineName,userid
或以其他方式管道连接到Export-Csv
,userid
是空白的。
两个问题是:
- 为什么 ID 为 4634 的事件在通过管道传输到
{$_.properties[8].value -eq 2}
的位置时会丢弃? - 为什么
userid
是空的?如何获得userid
?
-
请注意,8 不是一个幻数。它是 4624 事件定义的 XML 中的第 9 个属性(索引从 0 开始(。如果打开"详细信息"选项卡并切换到 XML 视图,则可以在事件查看器中看到它。查看 4634 事件时,可以看到 Logon Type 属性现在是第 5 个 - 因此您可能需要将查询修改为如下所示的内容:
其中 {{$.Id -eq 4624 -and $.properties[8] -eq 2} -or {$.Id -eq 4634 -and $.properties[4] -eq 2}}
-
用户 ID 只是没有为这些事件定义。您可能需要查看 XML 中定义的 TargetUserName 属性(第 6 个属性(。
好的,这就是我最终要做的。它打印出逗号分隔的值:
$evts = Get-WinEvent -Path 'C:pathtosecuritylog.evtx' | where {($_.Id -eq 4624 -and $_.properties[8].value -eq 2) -or ($_.Id -eq 4634 -and $_.properties[4].value -eq 2) }
foreach ($e in $evts)
{
# get the attributes
$ds = $e.TimeCreated
$tdn = $e.TaskDisplayName
$mn = $e.MachineName
# userid will vary depending on event type:
if($e.Id -eq 4624) { $userid = $e.properties[5].value }
if($e.Id -eq 4634) { $userid = $e.properties[1].value }
write-host ("{0},{1},{2},{3}" -f [string]$ds,[string]$tdn,[string]$mn,[string]$userid)
}