Get-ADUser -Identity username -Properties "LastLogonDate"
output:
DistinguishedName : CN=SomeName,CN=SomeGroup,DC=DomainName,DC=local
Enabled : True
GivenName : AccountName
LastLogonDate : 7/18/2022 7:48:24 PM
Name : AccountName
ObjectClass : user
ObjectGUID : 2d348557-ff9b-4452-8f3b-96e820df570s
SamAccountName : AccountName
SID : S-1-5-21-453637392-373859473-1311905769-2573
Surname :
UserPrincipalName : AccountName@DomainName.local
or it is the PowerShell command with filter:
Get-ADUser -Identity username -Properties LastLogon | Select Name, @{Name='LastLogon';Expression={[DateTime]::FromFileTime($_.LastLogon)}}
output:
Name LastLogon
---- ---------
AccountName 7/18/2022 8:51:00 PM
No comments:
Post a Comment