Skip to content

Instantly share code, notes, and snippets.

@plembo
Created November 17, 2018 05:23
Show Gist options
  • Save plembo/68afccc221954b7d7497671d1e065257 to your computer and use it in GitHub Desktop.
Save plembo/68afccc221954b7d7497671d1e065257 to your computer and use it in GitHub Desktop.
Example Get-ADUser Queries

Example Get-ADUser Queries

Connect to Azure AD:

Connect-ADUser

Query for all attributes:

Get-ADUser -Filter "userPrincipalName eq '[email protected]' | select *

Query for specific attributes:

Get-ADUser -ObjectId [email protected] | select DisplayName, Mail, CompanyName, Department, Mobile, Country
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment