Reputation: 380
All Active Directory user accounts have the property "Initials".
How do I retrieve a user's initials by using Powershell?
Upvotes: 2
Views: 7476
Reputation: 10107
If you have ActiveDirectory Powershell module, then you can run:
Get-ADUser "YourUser" -Properties Initials
Upvotes: 6