Remove Deny Permissions from Exchange Mailbox using Powershell

5d05eb33135798a962e3199db1fa4a4c

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 … Read more

Export Exchange Mailbox Address Details to CSV

5d05eb33135798a962e3199db1fa4a4c

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 … Read more

Exchange Toolkit Panel v1.1

Exchange Toolkit

The Exchange Toolkit Panel is a free TechyGeeksHome utility providing a graphical interface for common Microsoft Exchange administration tasks. Simplifies Exchange management without needing to remember PowerShell commands. Requirements Windows Server with Microsoft Exchange Exchange Administrator rights Microsoft .NET Framework 4.5.2 or later How to Download Watch our video guide on how to download from … Read more

Exchange 2007 – How to create a shared mailbox

5d05eb33135798a962e3199db1fa4a4c

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 … Read more

Exchange Server – Anti-Spam Recipient Filtering

Exchange Server Anti-Spam 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: You can keep adding email addresses to the list for what you require. Something to … Read more

Office 2016 – Outlook and Exchange Compatibility

outlook blue logo

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 … Read more

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

Exchange 2013

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 … Read more