Summary: Use the Active Directory Module to get the information from the “Notes” field.
I’m trying to find the Active Directory property to use to access the Notes field when I’m viewing a user or a group. Could you lend me a hand?
No problem at all. The property you are looking for is info
and can be added when you use Get-ADuser
or Get-ADGroup
. I like to add description
as well to pull in most of the descriptive details. Here is an example:
Get-ADUser -filter * -properties info,description
Get-ADGroup -filter * properties info,description