Skip to content

Instantly share code, notes, and snippets.

@chustedde
Created March 17, 2016 15:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chustedde/14fc301f51d35e78f063 to your computer and use it in GitHub Desktop.
Save chustedde/14fc301f51d35e78f063 to your computer and use it in GitHub Desktop.
The AD Users and Computers interface won't let you edit the authOrig property of a Distribution Group until you set an initial value. You need to use a real DN because it will check the validity before adding it. After doing this, you can add/edit the authorized senders from the AD Users and Computers GUI.
Set-ADGroup -Identity "Test Group" -Server contoso.edu -Add @{authOrig=@('CN=Joe Test,OU=Department,OU=People,DC=CONTOSO,DC=EDU’)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment