Exchange – Disable & Enable Mailbox Features based on Organisation Unit

In Exchange you can have a number of mailbox features either enabled or disabled for each mailbox. These features include Outlook Web Access (OWA), POP3, IMAP and ActiveSync. If you want to enable or disable all or any of these features on bulk or by Organisational Unit (OU) then you can use the following Exchange Management Shell PowerShell script to …

Exchange – Disable & Enable Mailbox Features based on Organisation Unit Read More

Exchange Server – Get Mailbox Folder Sizes

If you are using Exchange and you want to see the list of folder sizes a mailbox has, you can open up Exchange Management Shell (EMS) and run the command below: Where: mailboxalias = The alias of the mailbox you want to get the folder sizes of Name = Name of the folder @{N=”FolderSize (MB)”;E={$_.FolderSize.ToMB()}} = Converts the folder size …

Exchange Server – Get Mailbox Folder Sizes Read More

Remove Deny Permissions from Exchange Mailbox using Powershell

If you are an Exchange administrator and are having trouble in accessing other mailboxes although you have full access, then you may find that you need to remove the “Deny” permission on the mailbox you are trying to access. Sometimes this can be your own account or maybe a group like “Domain Admins”. To check the existing permissions on the …

Remove Deny Permissions from Exchange Mailbox using Powershell Read More

Export Exchange Mailbox Address Details to CSV

If you need to export your Exchange mailbox address details to CSV then you can run the following EMS PowerShell command to export the name, primary SMTP email address and the mailbox database where the mailbox is allocated. Get-Recipient -Resultsize unlimited | select name, primarysmtpaddress, Database | export-csv C:tempaddresses.csv You can change the file location to wherever you want to …

Export Exchange Mailbox Address Details to CSV Read More

Exchange 2007 – Change a Shared Mailbox to User Mailbox

You may have seen our previous post about changing a user mailbox into a shared mailbox in Exchange – but what if you want to do it the other way around and change a shared mailbox into a user mailbox? Well, see below…. There is a simple PowerShell command that you can run within Exchange Management Shell (EMS) to carry …

Exchange 2007 – Change a Shared Mailbox to User Mailbox Read More

Exchange 2007 – Change a User Mailbox to Shared Mailbox

If you want to change a user mailbox in Exchange to a shared mailbox, then there is a simple powershell command that you can run within Exchange Management Shell (EMS) to carry this out. Just open up EMS and use this command: Set-Mailbox “user mailbox name” -Type:Shared where “user mailbox name” – is the name of the user mailbox you …

Exchange 2007 – Change a User Mailbox to Shared Mailbox Read More

Exchange 2007 – How to create a shared mailbox

If you need to create a shared mailbox in Exchange Server 2007, then you should first gather the following information about the mailbox: Mailbox Name Organisational Unit that the mailbox will sit in Mailbox Server/Database User Principal Name Once you have this information, you should start up Exchange Management Shell (EMS) and run the following command: New-Mailbox -Name:”Shared Mailbox” -OrganizationalUnit:”DOMAINOU” …

Exchange 2007 – How to create a shared mailbox Read More

Exchange Server – Anti-Spam Recipient Filtering

If you want to add multiple specific email addresses to your Exchange Anti-Spam Recipient Filtering then you can use Exchange Management Shell to run a command to add comma separated multiple email addresses. The command you should run is this: Set-RecipientFilterConfig -BlockedRecipients joe@bloggs.com,steve@techygeekshome.info,bob@mail.com You can keep adding email addresses to the list for what you require. Something to keep in …

Exchange Server – Anti-Spam Recipient Filtering Read More

Exchange Mailbox Limits – Export None Default Quotas to CSV

If you are using Exchange in your organisation and have multiple administrators, then you may need to keep an eye on mailbox limits. In most organisations the mailbox limits are set by default on the database, however you can change the limits per mailbox. So, if you want to see which mailboxes do not have the default database limits set, …

Exchange Mailbox Limits – Export None Default Quotas to CSV Read More

Office 2016 – Outlook and Exchange Compatibility

With the recent release of Microsoft Office 2016 and the subsequent release to volume licence users on VLSC, a lot of people will be rushing into upgrading to the latest version. However, be careful with compatibility with your corporate Exchange servers… Outlook 2016 will work with the following Exchange Server versions: Exchange Server 2016 Exchange Server 2013 Exchange Server 2010 …

Office 2016 – Outlook and Exchange Compatibility Read More

How to export an Exchange Mailbox using Powershell (Exchange Management Shell)

If you want to export an Exchange mailbox to PST with some variables included, then this guide should help you out. In Exchange Management Shell, you can run the following command to export a mailbox to PST with variables like delete all mail from mailbox after export or maybe excluding Contacts or Calendar. The command you should use is this: …

How to export an Exchange Mailbox using Powershell (Exchange Management Shell) Read More