We have a Domain X. Our computers (lab PCs) are in Domain X. We have a one-way, transitive trust with Domain Y.
Our outside users sometimes log in to our lab PCs using their Domain Y accounts. This is sometimes slow and domain controllers have been listed as a potential issue. Here is where I come in, trying to collect data attempting to correlate the length of logon times with the various DCs that might be used during logon.
I can locate the domain controller in Domain Y which responded to the authentication request via accessing the %LOGONSERVER% variable (this is apparently better than binding to RootDSE).
How can I programmatically (and hopefully using VBScript, at least for prototyping) find the domain controller in our domain, Domain X, which responded to the request first before passing it off to Domain Y? Is this buried somewhere in the registry on the workstation?
Or will only the local domain controllers know and note it in the Event Log?
Or is my understanding of the process wholly incorrect, and none of the DCs in Domain X are contacted at any point by a lab PC? (If I have made such a mistake, documentation/flowcharts on the logon process with trusts would be awesome)
Attempt #1: I did look through the registry and found one of my local DCs referenced under
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Group Policy\History\DCName
, but that appears to be from a Group Policy update process and periodically updates while logged in.
Apologies if this is more of a ServerFault question.