Get-ADUser -SearchBase

1

Trying to run this script:

Get-ADUser -Filter * -SearchBase "OU=Department,DC=Company,DC=COM" -Properties employeeID,displayName,surname,givenname,physicalDeliveryOfficeName,title,department,company,memberof 

When the script runs it grabs everything under OU=Department but how can I get it to just grab user objects under Department > Users?

Westfall_T

Posted 2018-01-23T18:33:35.023

Reputation: 65

Answers

2

You only need to use the -SearchScope parameter and pass it the OneLevel argument to tell the command to not traverse per the default SubTree value it takes if you do not specify any -SearchScope parameter and value.

So just include: Get-ADUser -Filter * -SearchScope OneLevel <Rest of your command>

Example PowerShell

$SearchBase = "OU=Department,DC=Company,DC=COM"
Get-ADUser -Filter * -SearchScope OneLevel -SearchBase $SearchBase -Properties employeeID,displayName,surname,givenname,physicalDeliveryOfficeName,title,department,company,memberof

Further Resources

  • Get-ADUser -SearchBase

    -SearchBase

    When the value of the SearchBase parameter is set to an empty string and you are connected to a GC port, all partitions will be searched.

    source

  • Get-ADUser

    -SearchScope
      The scope of an AD search.
      Possible values for this parameter are:
      Base or 0        Search only the current path or object.
      OneLevel or 1    Search the immediate children
      Subtree or 2     Search the current path/object and all children
    

    source

Pimp Juice IT

Posted 2018-01-23T18:33:35.023

Reputation: 29 425