码迷,mamicode.com
首页 > 其他好文 > 详细

查看登陆事件

时间:2019-07-01 21:21:53      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:replace   ace   psc   strong   gen   http   validate   proc   color   

实现效果:

  技术图片

实现代码:

Get-EventLog -LogName Security -InstanceId 4624|
ForEach-Object{
    [PSCustomObject]@{
        Time=$_.TimeGenerated
        LogonType=$_.ReplacementStrings[8]
        ProcessName=$_.ReplacementStrings[17]
        Domain=$_.ReplacementStrings[6]
        User=$_.ReplacementStrings[5]
        ValidatePack=$_.ReplacementStrings[10]
        Source=$_.Source
    }
}|Out-GridView

 

查看登陆事件

标签:replace   ace   psc   strong   gen   http   validate   proc   color   

原文地址:https://www.cnblogs.com/feiyucha/p/11116723.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!