I have a problem that started after the addition of a new site in active directory. My original AD consisted of 3 sites with one DC/GC at each site. Each site has specific logon scripts associated with it. I added a fourth site, all seemed fine with the install but I noticed logon problems the next business day. When a workstation would attempt to logon it was going outside of it's original site to authenticate with the server located at the newly created site. Following are the steps I took to create the 4th site.
Ran DCPROMO on the new Windows 2000 server.
DCPROMO was completed and I was notified that my DC was added to the site1 site.
I opened the AD Sites & Services MMC and created a site4 with the appropriate subnet value.
Added the newly promoted DC to site4 and created a site link to site1 DC.
Granted the DC in site4 Licensing Server status and made it a GC.
What steps did I miss? When I run the following VBS script on a workstation from site1 it tells me it belongs to site4 and the site4 DC is it's logon server. What could be causing this problem?
------------------------------------------------------------
Option Explicit
Dim objSystemInfo
Dim objWSHShell
Dim strLogonServer
Set objWSHShell = Wscript.CreateObject("Wscript.Shell")
strLogonServer = objWSHShell.ExpandEnvironmentStrings("%LOGONSERVER%")
WScript.Echo "AD Logon Server: " & strLogonServer
Set objSystemInfo = CreateObject("ADSystemInfo")
WScript.Echo "AD Sitename: " & objSystemInfo.SiteName
------------------------------------------------------------
Ran DCPROMO on the new Windows 2000 server.
DCPROMO was completed and I was notified that my DC was added to the site1 site.
I opened the AD Sites & Services MMC and created a site4 with the appropriate subnet value.
Added the newly promoted DC to site4 and created a site link to site1 DC.
Granted the DC in site4 Licensing Server status and made it a GC.
What steps did I miss? When I run the following VBS script on a workstation from site1 it tells me it belongs to site4 and the site4 DC is it's logon server. What could be causing this problem?
------------------------------------------------------------
Option Explicit
Dim objSystemInfo
Dim objWSHShell
Dim strLogonServer
Set objWSHShell = Wscript.CreateObject("Wscript.Shell")
strLogonServer = objWSHShell.ExpandEnvironmentStrings("%LOGONSERVER%")
WScript.Echo "AD Logon Server: " & strLogonServer
Set objSystemInfo = CreateObject("ADSystemInfo")
WScript.Echo "AD Sitename: " & objSystemInfo.SiteName
------------------------------------------------------------