3

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?

HW90
  • 1,953
  • 2
  • 21
  • 45

1 Answers1

3

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!”
HW90
  • 1,953
  • 2
  • 21
  • 45