RoboticScript
  • Welcome
  • AD Users & Computers
    • Users
    • Groups
    • Computers
    • Service Account
    • Organizational Unit
  • Automation
    • Find Users with Delegation Permission to Reset Passwords
    • Add multiple members in group and output should be in CSV
    • Add multiple members in single group
Powered by GitBook
On this page
  1. AD Users & Computers

Users

Gets one or more Active Directory users.

Example 1: Get all of the properties for a specified user

Get-ADUser -Identity ravindra.sharma -Properties *

Example 2: Get a filtered list of users

Get-ADUser -Filter 'Name -like "*ravindra*"'
$OUpath = "ou=People,dc=rs,dc=local"

Get-ADUser -Filter * -SearchBase $OUpath

PreviousWelcomeNextGroups

Last updated 7 months ago