Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Set Distribution group notes

I'm trying to change the distribution group notes via powershell on a Exchange 2010 Server.

This is the way how to set the notes during creating a new group:

New-DistributionGroup "G_test" -Notes "TESTTEST"

But how to set the notes after creating the group?

like image 534
HW90 Avatar asked Oct 30 '25 09:10

HW90


1 Answers

I've found the solution: It looks like Exchange does not distinguish between the group types in some points. So you have to use Set-Group (Not Set-DistributionGroup) to change the notes attribute.

Example

Set-Group –identity G_test –Notes “For chess lovers!”
like image 188
HW90 Avatar answered Nov 01 '25 13:11

HW90