Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Active Directory Notes\Info field

Hello!

 

I am hoping someone can help me. I am trying to build a report using the Active Directory group table. I have all the attributes I need except for one which is the notes field. Within Active Directory this field is typically located at the bottom of the general tab. When pulling this field via Powershell it is normally called "info". I am unable to find this field when pulling the group table into Power BI. Does anyone know what it is called or am I looking in the wrong table?

 

 

3 REPLIES 3
Anunakin
New Member

I found solution for it:

$params = @{
    SamAccountName        = $cod
    Name                  = "$name $sname"
    DisplayName           = "$name $sname"
    GivenName             = $name
    Surname               = $sname
    UserPrincipalName     = "$mat@nacional.int"
    AccountPassword       = (ConvertTo-SecureString "NewPass--?" -AsPlainText -Force)
    Enabled               = $True
    Path                  = $OU
    ChangePasswordAtLogon = $True
    PassThru              = $True
    Description           = "$cod"
    Office	          = "$office"
    OtherAttributes 	  = @{ info="$codSO" }
}
$ADUser = New-ADUser @params

You need give in this format:

OtherAttributes = @{ info="$codOS" }

EmmanuelP
New Member

Hi,

 

The "notes" field (called info for whatever reason) is in the mailrecipient field.

v-yanjiang-msft
Community Support
Community Support

Hi @Anonymous ,

Please see if this blog can help you.

Best Regards,
Community Support Team _ kalyj

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.