active_directory

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
active_directory [2022/01/17 14:50] mguptonactive_directory [2022/01/17 17:21] (current) – [Solutions] mgupton
Line 15: Line 15:
 pause pause
 </code> </code>
 +
 +----
  
 === Get LastLogon to find stale user accounts === === Get LastLogon to find stale user accounts ===
 +//Powershell// command for getting the LastLogon date-time for users on a specified domain controller.
 <code powershell> <code powershell>
 Get-ADUser -Credential $Credentials -Server pdc -Filter * -Properties * | Select-Object Name, @{N='LastLogon'; E={[DateTime]::FromFileTime($_.LastLogon)}} Get-ADUser -Credential $Credentials -Server pdc -Filter * -Properties * | Select-Object Name, @{N='LastLogon'; E={[DateTime]::FromFileTime($_.LastLogon)}}
 </code> </code>
  
 +See theses solutions for handling multiple domain controllers, [[https://interworks.com/blog/trhymer/2014/01/22/powershell-get-last-logon-all-users-across-all-domain-controllers/|solution1]], [[https://stackoverflow.com/questions/41042336/lastlogon-from-all-domain-controllers-csv-output|solution2]].
  
  • active_directory.1642431005.txt.gz
  • Last modified: 2022/01/17 14:50
  • by mgupton