How to Hide Mailboxes from Address List in Exchange Server 2010

By default, new mailbox appears in the Global Address list. We can hide a mailbox from Exchange Global Address list or other address lists. One reason for doing so can be to hide administrative mailboxes that you use for specific purposes. 

 

Here are the steps required to hide mailbox from the address lists:- 

  1. Open theExchange Management Console from the Start Menu. 
  2. Right click on any mailbox-enabled user and open its Properties. 
  3. On theGeneral tab, select the Hide From Exchange Address Lists check box and select Ok. 

 

 

How to Allow User to Access another User’s Mailbox in Exchange Server 2010  

Sometimes, we need to provide access to someone so that he/she can access the mailbox of someone else’s mailbox. We can use Manage Full Access Permission Wizard to provide this level of access. Below are the steps required to grant mailbox access permissions:- 

  1. Open the Exchange Management Console.
  2. Right click the mailbox you want to work with and then select Manage Full Access Permission.
  3. In the Manage Full Permission wizard, click Add and then use the Select User or Group dialog box to choose the user/s that should have access to this mailbox.

We can also use Cmdlets to grant or revoke Full Access permissions. 

Adding full access permissions  

Syntax  

Add-MailboxPermission -Identity UserBeingGrantedPermission -User UserWhoseMailboxIsBeingConfigured –AccessRights ‘FullAccess‘  

Example 

Add-MailboxPermission -Identity ‘CN=Rose Mary,OU=Sales,DC=Techpeoples,DC=net’ -User ‘TRENOVISION\user‘ –AccessRights ‘FullAccess‘  

 

Removing full access permissions 

Syntax  

Remove-MailboxPermission -Identity ‘UserBeingGrantedPermission’ -User ‘UserWhoseMailboxIsBeingConfigured’ -AccessRights ‘FullAccess’ -InheritanceType ‘All’  

Example 

Remove-MailboxPermission -Identity ‘CN=Rose Mary, OU=Sales,DC=Techpeoples,DC=net’ -User ‘TRENOVISION\user’ -AccessRights ‘FullAccess’ -InheritanceType ‘All’ 

 

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 t 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 ‘TRENOVISION\user‘ –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 ‘TRENOVISION\user‘ –ExtendedRights ‘Send-As’  

InheritanceType ‘All’ –ChildObjectTypes $null –InheritedObjectTypes $null -Properties $null