Merge pull request #15 from microsoft/kmyrup/configmgr-hub-selfhost/kmyrup/02565212-ff32-403d-afdd-83a1f7eb3ef6

Pull request with type [CREATE] for user [kmyrup] and object type [Script] - titled [Who's doing Interactive Logon]
This commit is contained in:
KevinM_MSFT 2020-05-19 10:09:39 -07:00 коммит произвёл GitHub
Родитель d81ca217dd 6b172dddcf
Коммит 13abaa9c98
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,7 @@
$ComputerLocalHost = Get-Content env:computername
$UserProperty = @{n="User";e={(New-Object System.Security.Principal.SecurityIdentifier $_.ReplacementStrings[1]).Translate([System.Security.Principal.NTAccount])}}
$TypeProperty = @{n="Action";e={if($_.EventID -eq 7001) {"Logon"} else {"Logoff"}}}
$TimeProperty = @{n="Time";e={$_.TimeGenerated}}
$MachineNameProperty = @{n="MachineName";e={$_.MachineName}}
Get-EventLog System -Source Microsoft-Windows-Winlogon -ComputerName $ComputerLocalHost | select $UserProperty, $TypeProperty,$TimeProperty,$MachineNameProperty