Thursday, 19 March 2015

How to Grant Send As Permission in Exchange Server 2010

We can grant Send As… permissions by using Manage Send As Permission Wizard from Exchange Management Console. To do so,right click on the Mailbox that you want to work with and then select Manage Send As Permission. In the Manage Send As Permission Wizard,click Add and then use the Select Recipient dialog box to choose the user/s who should have this permission.
We can also use the Add-ADPermission and Remove-ADPermission cmdlets to manage Send As permissions.
Adding Send As permissions
Syntax
Add-ADPermission -Identity UserBeingGrantedPermission -User UserWhoseMailboxIsBeingConfigured -ExtendedRights 'Send-As'
Example:-
Add-ADPermission -Identity 'CN=Rose Mary,OU=Sales,DC=techpeoples,DC=net' -User 'TECHPEOPLES\mike' -ExtendedRights 'Send-As'
Removing Send As permissions
Syntax
Remove-ADPermission -Identity UserBeingRevokedPermission -User UserWhoseMailboxIsBeingConfigured -ExtendedRights 'Send-As'
-InheritanceType 'All' -ChildObjectTypes $null -InheritedObjectType $null -Properties $null
Example
Remove-ADPermission -Identity 'CN=Rose Mary,OU=sales, DC=techpeoples,DC=net' -User 'TECHPEOPLES\mike' -ExtendedRights 'Send-As'


-InheritanceType 'All' -ChildObjectTypes $null -InheritedObjectTypes $null -Properties $null

No comments:

Post a Comment