Error Connecting to Exchange Online PowerShell with MFA enabled.

Error Connecting to Exchange Online PowerShell with MFA enabled.

Error Connecting to Exchange Online PowerShell with MFA enabled. When you try to connect to Exchange Online using PowerShell you receive the following error. The Cause for this is: This issue occurs if either an internal firewall or the Windows Remote Management service has not been started. Solution is: To resolve this issue, check whether…

Assign Exchange Online Admin Role Permission using PowerShell

Assign Exchange Online Admin Role Permission using PowerShell

Assign Exchange Online Permissions using PowerShell You can quickly and easily assign roles to user accounts using Office 365 PowerShell by identifying the user account’s Display Name and the role’s Name. To start, you first need to establish a session to Office 365 PowerShell, this can be done by a script a created which is…

Microsoft Exchange Online Multi-Geo Capabilities

Microsoft Exchange Online Multi-Geo Capabilities

Microsoft Exchange Online Multi-Geo Capabilities What is Multi โ€“ Geo Capabilities? Multi-Geo enables a single Office 365 tenant to span across multiple Office 365 datacenter geographies (geos), and gives customers the ability to store their Exchange and OneDrive data, at-rest, on a per-user basis, in their chosen geos. If you are part of the Microsoft…

How to set Exchange Online mailbox sizes and limits in the Office 365 environment
| |

How to set Exchange Online mailbox sizes and limits in the Office 365 environment

INTRODUCTION This article describes how to use Exchange Online PowerShell to set Exchange Online mailbox sizes and limits in the Microsoft Office 365 environment. To set mailbox size limits for Exchange Online mailboxes, use one of the following methods.   Set mailbox size limits for a single user Connect to Exchange Online by using remote…

Encrypting Email Messages in Microsoft Office 365
| | | | |

Encrypting Email Messages in Microsoft Office 365

Microsoft Office 365 Message Encryption   In this post, I will look at configuring message encryption in Office 365. What is message encryption? Microsoft Office 365 Message Encryption is an extra add-on online service build on Microsoft Azure Right Management (Azure RMS), By enabling Azure RMS administrators can configure message encryption by configuring exchange online…

Exchange Online Protection: What is Backscatter Messages
| |

Exchange Online Protection: What is Backscatter Messages

What is Backscatter messages in Exchange Online Protection?   It’s the automated bounce messages which is sent by mail servers usually due to incoming spam. Because Exchange Online Protection is a spam filtering service , messages sent to suspicious and non-existing recipients are rejected. When this process happens Exchange Online Protection generates a NDR (…

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…

Assign Office 365 Licenses using Active Directory Groups
| | | | | |

Assign Office 365 Licenses using Active Directory Groups

Assign Office 365 Licenses with Active Directory Groups In this post I will walk through the options ofย  assigning Office 365 Licenses based on Active Directory Group membership. Microsoft has recently released the new feature in Azure Active Directory which allows you to apply Azure licenses as well as Office 365 licenses based on group…

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…

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

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…