如何Lastlogon
用字符串“从不记录”替换字段中的 $null 值,并将该值放在“上次登录天数”列中
Search-ADAccount -UsersOnly -AccountDisabled:$false | Get-ADUser -Properties Name, LastLogon | select Name, @{N='LastLogon'; E={[DateTime]::FromFileTime($_.LastLogon)}}, @{N='Last Logon Days'; E={$($(Get-Date) - $([DateTime]::FromFileTime($_.LastLogon))).Days}}
我有从未登录过网络的帐户,他们返回的最后登录日期是 12/31/1600 7:00:00 PM,这有点远。