Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Search for All the Attributes That Appear in the Global CatalogContent of Search for All the Attributes That Appear in the Global Catalog.ps1MD5 Hash: 7ABA19708529CE21224B4626B89F0115 |
||
$objRoot=[adsi]"LDAP://rootDSE"
$objPath="LDAP://"+$objRoot.schemaNamingContext $strFilter = "(&(objectClass=attributeSchema)(isMemberOfPartialAttributeSet=TRUE))" $objDomain = New-Object System.DirectoryServices.DirectoryEntry($objPath) $objSearcher = New-Object System.DirectoryServices.DirectorySearcher $objSearcher.SearchRoot = $objDomain $objSearcher.PageSize = 1000 $objSearcher.Filter = $strFilter $colProplist = "name" foreach ($i in $colPropList){$objSearcher.PropertiesToLoad.Add($i)} $colResults = $objSearcher.FindAll() foreach ($objResult in $colResults) {$objItem = $objResult.Properties; $objItem.name} | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |