Quantcast
Channel: Windows Wide Open
Viewing all articles
Browse latest Browse all 3110

PowerTip: Get the Notes field when accessing users or groups in Active Directory

$
0
0

Summary: Use the Active Directory Module to get the information from the “Notes” field.

Hey, Scripting Guy! Question 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?

Hey, Scripting Guy! Answer 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

The Doctor

Hey, Scripting Guy! Blog

The post PowerTip: Get the Notes field when accessing users or groups in Active Directory appeared first on Windows Wide Open.


Viewing all articles
Browse latest Browse all 3110

Trending Articles