Hello, I've been troubleshooting "slow login times" for some AD bound systems in the corporate environment. I've stumbled upon a oddity that I'd like some clarification on. The AD search paths differ from client to client in my environment. New macs are bound to AD at imaging time via Casper Directory binding, existing Macs were bound using a third party tool mid last year.
I wrote a simple extension attribute to return what Active Directory searth paths the client was using:
#!/bin/bash
result="`dscl /Search -read / | grep "/Active Directory/" | sort -u`"
echo "<result>$result</result>"
exit 0
and got the following results across 1100 clients globally:
/Active Directory/[COMPANY] & /Active Directory/[COMPANY]/All Domains
/Active Directory/[COMPANY]/All Domains
/Active Directory/All Domains
/Active Directory/AD/All Domains
/Active Directory/ad.[COMPANY].com
so I'm wondering, which path should I be seeing and why is there such a diversity?