Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Disable a Global Catalog ServerContent of Disable a Global Catalog Server.vbsMD5 Hash: 8C787C8B11C80F7F2A6D4E99D056E501 |
||
' Description: Disables the global catalog service on the domain controller atl-dc-01.
strComputer = "atl-dc-01" Const NTDSDSA_OPT_IS_GC = 1 Set objRootDSE = GetObject("LDAP://" & strComputer & "/rootDSE") strDsServiceDN = objRootDSE.Get("dsServiceName") Set objDsRoot = GetObject _ ("LDAP://" & strComputer & "/" & strDsServiceDN) intOptions = objDsRoot.Get("options") If intOptions And NTDSDSA_OPT_IS_GC Then objDsRoot.Put "options", intOptions Xor NTDSDSA_OPT_IS_GC objDsRoot.Setinfo End If | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |