Run AD domain tools from machines not joined to domain.
@echo off @rem This script allows mmc to be ran for AD domains from non domain joined machines. @rem Run this script as administrator. set /p USER="Username: " runas /netonly /user:contoso.com\%USER% "mmc C:\Users\Public\Desktop\contoso.msc /server=contoso.com" pause
Powershell command for getting the LastLogon date-time for users on a specified domain controller.
Get-ADUser -Credential $Credentials -Server pdc -Filter * -Properties * | Select-Object Name, @{N='LastLogon'; E={[DateTime]::FromFileTime($_.LastLogon)}}
See theses solutions for handling multiple domain controllers, solution1, solution2.