Carl Winbäck
Carl Winbäck

Reputation: 380

Powershell - Get AD user's initials

All Active Directory user accounts have the property "Initials".

How do I retrieve a user's initials by using Powershell?

Upvotes: 2

Views: 7476

Answers (1)

Raf
Raf

Reputation: 10107

If you have ActiveDirectory Powershell module, then you can run:

Get-ADUser "YourUser" -Properties Initials

Upvotes: 6

Related Questions