PowerShell 技能连载 - 查找登录事件

假设您有管理员特权,以下是一个快速、简单地转储所有登录事件的方法。这样你就可以知道谁登录了一台特定的电脑,以及使用了哪种身份验证类型:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#requires -RunAsAdministrator

Get-EventLog -LogName Security -InstanceId 4624 |
ForEach-Object {
[PSCustomObject]@{
Time = $_.TimeGenerated
LogonType = $_.ReplacementStrings[8]
Process = $_.ReplacementStrings[9]
Domain = $_.ReplacementStrings[5]
User = $_.ReplacementStrings[6]
Method = $_.ReplacementStrings[10]
Source = $_.Source

}
} | Out-GridView

PowerShell 技能连载 - 查找登录事件

http://blog.vichamp.com/2019/06/11/finding-logon-events/

作者

吴波

发布于

2019-06-11

更新于

2022-07-06

许可协议

评论