Categories: ExchangeOffice 365

Restrict to send mail to Distribution List on Office365 using authOrig or dLMemSubmitPerms

Restrict to send mail to Distribution List using authOrig or dLMemSubmitPerms

This article explains on how to restrict who can send to a distribution list on office 365 or restrict who can send to a distribution list on Exchange 2010

Below is how to give user permission to send email to a distribution group using authOrig or dLMemSubmitPerms.

1. To give user permission to send email to a distribution group using AuthOrig to restrict sending email to a distribution group to individual users.

Below can not be done from Attribute editor from ADUC and its used for giving permissions to a individual on a object

Powershell command below:

Set-ADObject "CN=Vamshi,OU=Distribution List,OU=Groups,DC=Test,DC=com" -Add @{AuthOrig="CN=Vamshi1,OU=Distribution List,OU=Groups,DC=Test,DC=com"}

2. Below is how to give user permission to send email to a distribution group using dlMemSubmitPerms to restrict sending email to a distribution group to a group of users.

Below can be done using Attribute editor from ADUC and its used for giving permissions to a group not individual on a object

Powershell command below:

Set-ADObject "CN=Group-Name,OU=Distribution List,OU=Groups,DC=Test,DC=com" -Add @{dLMemSubmitPerms="CN=GRoup-Name2,OU=Distribution List,OU=Groups,DC=Test,DC=com"}

Vamshi B

Recent Posts

How to install Firefox browser using Powershell

How to install of FireFox browser using PowerShell Sometimes you would like to install Firefox…

2 years ago

How to install chrome with Powershell?

Quick way to install chrome on windows with Powershell? Launch the Powershell and run below…

2 years ago

How to Fix PowerShell Script Not Digitally Signed Error?

How to Fix PowerShell Script Not Digitally Signed Error? When a script with a .ps1…

2 years ago

Powershell Cheat Sheet for beginners

Powershell Cheat Sheet for beginners PowerShell has become something of an ace in the hole…

2 years ago

Can you use Linux commands in Powershell?

Today we discuss one of a few questions a lot of sysadmins and IT Admins…

2 years ago

Backing Up an SQL Database with PowerShell

Backing Up an SQL Database with PowerShell Before making any changes in the production environment,…

2 years ago

This website uses cookies.