DELL Quest Active Directory Recovery Manager
| | |

DELL Quest Active Directory Recovery Manager

Active Directory Recovery using DELL Active Directory Recovery Manager.   In this post I will go through the option of installing and configuring Dell Active Directory Recovery Manager.   What is Dell Active Directory Recovery Manager? Recovery Manager for Active Directory enables you to quickly restore your environment without taking AD offline but still maintain…

How to recover deleted email using VEEAM for Office 365
| | | | | | | | |

How to recover deleted email using VEEAM for Office 365

Recover Deleted Items using VEEAM for Microsoft Office 365 In todays post I will go through the options of recover a deleted item using VEEAM Backup for Microsoft Office 365. To get started we need to open the VEEAM Backup Console and then Click on the Explore Option. Select from which restore point you want…

Exchange Resource Mailbox not sending auto decline for double booking.
| | | | | |

Exchange Resource Mailbox not sending auto decline for double booking.

Set Exchange resource mailbox to send auto decline for double booking. This is a topic that always seems to come up from the helpdesk team , in this post i will configure a resource mailbox to auto decline when there is a double booking. In this post i will use the Exchange Powershell to configure…

Slow SMTP Relay Exchange 2010 – “MaxAcknowledgementDelay”
| | | |

Slow SMTP Relay Exchange 2010 – “MaxAcknowledgementDelay”

Slow SMTP Relay for Applications using Exchange 2010 Receive Connectors.   In this post we will look at the default “SMTP Delay” for messages received from a system that don’t support shadow redundancy. By default, Receive connectors delay acknowledgement up to 30 seconds. For more information, see “Delayed Acknowledgement” in Understanding Shadow Redundancy. To view the…

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

Exchange Mailbox Move Request Stuck on ‘Queued’
| | | | | | |

Exchange Mailbox Move Request Stuck on ‘Queued’

Exchange Mailbox Move Request Stuck on ‘Queued’   Recently i started doing bulk Mailbox Moves to New DB’s, during this process i found that all the new move-request jobs i started are all stuck on ‘Queued’ status. To resolve this i did the following. List all Move-Request (just to make sure they still all in…

Remove Exchange Mailbox Move-Request
| | | | | | | | |

Remove Exchange Mailbox Move-Request

Remove Exchange Mailbox Move-Request using PowerShell   Lets look at how to remove Exchange Mailbox Move-Request with PowerShell. Get-MoveRequest This will list all current Mailbox Move-Requests InProgress and Completed. To remove run : Remove-MoveRequest -Confirm:$false Lets looks at combining the “Get” option and only show “Completed” Move-Requests and then remove the “Completed” Move-Requests. Get-MoveRequest |Where-Object…

Set Receive and Send size limits Exchange PowerShell
| | | | |

Set Receive and Send size limits Exchange PowerShell

Set Mailbox Max Send and Max Receive limits Lets have a quick look at a one liner to set user mailbox send and receive size limits in Exchange Powershell.   Set-Mailbox Shaun.Hardneck -MaxReceive “15 MB” -MaxSend “15 MB” Now lets look at finding all users with “MaxSendSize” limits greater than “5 MB” Get-Mailbox -ResultSize Unlimited…

Remove Exchange 2010 Inbox Rules
| | | | |

Remove Exchange 2010 Inbox Rules

Remove Exchange Inbox Rules using PowerShell Lets look at a quick way to view , remove and disable user inbox rules. First lets get  list of inbox rules for a user by running the below: Get-InboxRule -Mailbox Shaun.Hardneck To disable one of the Inbox Rules run the following: Disable-InboxRule -Mailbox shaun.hardneck -identity <rule name> Next…