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 13:32] 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 ===
 +//Powershell// command for getting the LastLogon date-time for users on a specified domain controller.
 +<code powershell>
 +Get-ADUser -Credential $Credentials -Server pdc -Filter * -Properties * | Select-Object Name, @{N='LastLogon'; E={[DateTime]::FromFileTime($_.LastLogon)}}
 +</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.1642426379.txt.gz
  • Last modified: 2022/01/17 13:32
  • by mgupton