Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Verify that a Domain Controller is in a SiteContent of Verify that a Domain Controller is in a Site.vbsMD5 Hash: 85A55369DD6F46A4F23A7E9D286CB524 |
||
' Description: Checks to see if a domain controller is in a specific Active Directory site.
strDcName = "atl-dc-01" strSiteName = "ga-atl-sales" Set objADSysInfo = CreateObject("ADSystemInfo") strDcSiteName = objADSysInfo.GetDCSiteName(strDcName) If UCase(strSiteName) = UCase(strDcSiteName) Then WScript.Echo "TRUE: " & strDcName & " is in site " & strSiteName Else WScript.Echo "FALSE: " & strDcName & " is NOT in site " & strSiteName End If | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |