Exchange 2016: Insufficient access rights to perform the operation. Enabling Remote Mailbox.
|

Exchange 2016: Insufficient access rights to perform the operation. Enabling Remote Mailbox.

Insufficient access rights to perform the operation, when executing cmdlet Enable-RemoteMailbox.   Use the Enable-RemoteMailbox cmdlet to create a mailbox in the cloud-based service for an existing user in the on-premises Active Directory.   During an installation and configuration of Exchange 2016 with Hybrid deployment, I come across the below Error message when running the cmdlet “Enable-RemoteMailbox“….

Exchange 2016 – There is no existing permission entry found for user.
| | | |

Exchange 2016 – There is no existing permission entry found for user.

There is no existing permission entry found for user: running Set-MailboxFolderPermissions   You receive the following error when trying to run the Set-MailboxFolderPermissions in Exchange 2016 EMS.   There is no existing permission entry found for user: Su-Yu-Chan Rack  –  Nerd. + CategoryInfo          : NotSpecified: (:) [Set-MailboxFolderPermission], UserNotFoundInPermissionEntryException + FullyQualifiedErrorId : [Server=THATLAZYEX-02,RequestId=365c6506-0b10-4de7-bd31-eeeec601ac4a,TimeStamp=7/26/2017 5:08:42 AM] [FailureCategory=Cmdlet-UserNotFoundInPermissionEntryException]…

Reduce Exchange 2016 Mailbox Database Size using ESEUTIL
| | | | |

Reduce Exchange 2016 Mailbox Database Size using ESEUTIL

Reduce Exchange 2016 Mailbox Database size using Eseutil.   In this post I will walk through the steps of reducing the Exchange Mailbox Database size, However the method of reducing the Mailbox Database size varies from different administrators. If you can afford to have downtime on a Mailbox Database then these steps would work for…

Exchange 2016 – Fail to Send Email to newly created MailContact
| | | | | |

Exchange 2016 – Fail to Send Email to newly created MailContact

“Fail” LED=550 5.7.136 RESOLVER.RST.SenderNotAuthenticatedForRecipient; authentication required; Delivery restriction check failed because the sender was not authenticated when sending to this recipient. In this post i will go over the option of removing the setting “Require that all senders are authenticated“. In Exchange 2013 this can be removed by logging into the Admin Console > Recipients…

Create New Exchange 2016 Mailbox Database using PowerShell
| | | | | |

Create New Exchange 2016 Mailbox Database using PowerShell

New Mailbox Database using PowerShell In this post I will create a new Mailbox Database for Exchange 2016 using PowerShell. Available Syntax for the cmdlet “New-MailboxDatabase” New-MailboxDatabase -Name -Server [-AutoDagExcludeFromMonitoring <$true | $false>] [-IsExcludedFromInitialProvisioning ] [-IsExcludedFromProvisioning <$true | $false>] [-IsSuspendedFromProvisioning <$true | $false>] [-OfflineAddressBook ] [-PublicFolderDatabase ] [-Confirm []] [-DomainController ] [-EdbFilePath ] [-LogFolderPath ]…

Exchange 2016 CU 6 Released
| | | | | | | |

Exchange 2016 CU 6 Released

Latest Exchange 2016 CU 6 released in June 2017 The Latest Cumulative Update for Exchange 2016 and now available for download. The latest releases includes fixes and issues reported as well as updated functionality. Updated functionality in Cumulative Update 6 With CU 6 the Exchange team added two highly anticipated features; Sent Items Behavior Control…

Exchange Mailbox has “Empty HomeMDB attribute”
| | | | | | | | | |

Exchange Mailbox has “Empty HomeMDB attribute”

Exchange Mailbox has “Empty HomeMDB attribute” After doing an Mailbox Move one of Mailboxes ran into an issue where it lots its “HomeMDB” attribute. How do we resolve this ? There is a quick and easy fix to resolve this , to start we need to open “ADSI Edit” . Select “Default naming context” Once…

Error Removing Mailbox Database
| | | | | | | |

Error Removing Mailbox Database

Error Removing Mailbox Database: This Mailbox database contains one or more mailboxes. When you try and remove an “Exchange Mailbox Database” you received the following error: “This mailbox database contains one or more mailboxes, mailbox plans, archive mailboxes, public folder mailboxes or arbitration mailboxes. To get a list of all mailboxes in this database, run…

Remove-Mailbox Database Exchange 2013
| | | | | | | |

Remove-Mailbox Database Exchange 2013

How to remove Exchange 2013 Mailbox Database using PowerShell In this post i want to share something that’s very common but i thought i’ll share some steps on removing a mailbox database. This post will focus only on doing these steps using Powershell. Firstly run the following command to get a list of all Exchange…

Create Exchange Mail Contact using Powershell
| | | | | | | | |

Create Exchange Mail Contact using Powershell

Create Exchange Mail Contact using Powershell How to create an Exchange Mail Contact using Powershell one liner. To create the new Mail Contact run the following in Exchange Shell. New-MailContact -Name “Lazy-Mails” -ExternalEmailAddress “LazyAdmin@Gmail.com” -OrganizationalUnit “OU=Contacts,DC=LazyAdmin,DC=com”   Quick and easy . #ThatlazyAdmin