Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
active_directory [2022/01/14 13:34] – mgupton | active_directory [2022/01/17 17:21] (current) – [Solutions] mgupton | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Active Directory ====== | ====== Active Directory ====== | ||
+ | ====== Tools ====== | ||
+ | * [[https:// | ||
+ | |||
+ | ====== Solutions ====== | ||
=== run-mmc.bat === | === run-mmc.bat === | ||
Run AD domain tools from machines not joined to domain. | Run AD domain tools from machines not joined to domain. | ||
Line 11: | Line 15: | ||
pause | pause | ||
</ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | === Get LastLogon to find stale user accounts === | ||
+ | // | ||
+ | <code powershell> | ||
+ | Get-ADUser -Credential $Credentials -Server pdc -Filter * -Properties * | Select-Object Name, @{N=' | ||
+ | </ | ||
+ | |||
+ | See theses solutions for handling multiple domain controllers, | ||