Loading |
VBScript |
JavaScript |
Powershell |
Search Options: Search for All the Users in a Specified OU and Any Sub OUsContent of Search for All the Users in a Specified OU and Any Sub OUs.ps1MD5 Hash: EBB35DEE465A6E854E1753F2F0702306 |
||
$strFilter = "(objectCategory=User)"
$objOU = New-Object System.DirectoryServices.DirectoryEntry("LDAP://OU=Finance,DC=fabrikam,DC=com") $objSearcher = New-Object System.DirectoryServices.DirectorySearcher $objSearcher.SearchRoot = $objDomain $objSearcher.SearchScope = "Subtree" $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 :: |