How to Export Exchange Online Transport Rules
|

How to Export Exchange Online Transport Rules

Export Exchange Online Transport Rules In this post, I will focus on how to export Exchange Online Transport rules using PowerShell. To get started we first need to establish a connection to Exchange Online or Office 365. Connect to Exchange Online PowerShell $UserCredential = Get-Credential Then $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential…

How to find your Office 365 Tenant Location.
| |

How to find your Office 365 Tenant Location.

How to find your Office 365 Tenant Location. The following method can be used to find out where your Office 365 Tenant is hosted. First, we need to connect to Office 365 Exchange Online using the following: $credential = Get-Credential $msexonline = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri “https://outlook.office365.com/powershell-liveid/” -Credential $credential -Authentication “Basic” -AllowRedirection Import-PSSession $msexonline -DisableNameChecking…

Create mailbox message restrictions Exchange 2016
|

Create mailbox message restrictions Exchange 2016

Create mailbox message restrictions Exchange 2016 Message restriction can be useful to control who can send messages to users in your organization. For example, you can configure a mailbox to accept or reject messages from certain users or only to accept messages from your Exchange organization. Message restriction can be configured using EMC or the…

Creating Exchange 2016 Distribution Group Naming Policy.
|

Creating Exchange 2016 Distribution Group Naming Policy.

Creating Exchange 2016 Distribution Group Naming Policy. What is Group naming policy? Group naming policy lets you standardize and manage the names of distribution groups which are being created by users in the organization. The policy can prevent users from using specific words as well as help with preventing inappropriate group names. You can require…

How to configure Exchange 2016 Internal and External Url’s
|

How to configure Exchange 2016 Internal and External Url’s

How to configure Exchange 2016 Internal and External Url’s Let’s look at how we can configure the Exchange 2016 Internal and External Url’s. To get started we first need to verify what the current URLs is and then go ahead and modify them. The following can be used to get the current URL’s used. Get-OutlookAnywhere…

Exchange 2010 SP3 Rollup 17 Failed: Setup ended prematurely.
| |

Exchange 2010 SP3 Rollup 17 Failed: Setup ended prematurely.

Exchange 2010 SP3 Rollup 17 Failed: Setup ended prematurely. When you run the Exchange 2010 SP2 Rollup 17 setup, you receive the follow error message. To resolve this issue, you can start the setup using and elevated command prompt. After running the Setup with elevated command prompt it completed suscessfully . To verify the version…

Installing Exchange 2016 with Exchange 2010 Co-Existing
| | | |

Installing Exchange 2016 with Exchange 2010 Co-Existing

Installing Exchange 2016 with Exchange 2010 Co-Existing In this Post, I will look at Installing Exchange 2016 on Windows Server 2016 co-existing with Exchange 2010. Exchange 2016 can only co-exist if the following requirements is met. Exchange 2016 consist of only two major Roles which is the Mailbox and Edge Transport Role. The Mailbox Server…

Exchange 2016 Installation Fails on Windows Server 2016
| | |

Exchange 2016 Installation Fails on Windows Server 2016

SetupExchange 2016 Installation Fails on Windows Server 2016 When you try to Install Exchange 2016 on Windows Server 2016 you receive the following Error Message. This computer requires the update described in Microsoft Knowledge Base Article KB3206632. Resolution: We need to install the following update which can be downloaded from here: https://support.microsoft.com/en-us/help/4004227/windows-10-update-kb3206632 Or visit the…

Error creating new Mailbox Database Exchange 2010
| |

Error creating new Mailbox Database Exchange 2010

Error creating new Mailbox Database Exchange 2010 When you try and create a new Mailbox Database, you receive the following Error: How do we resolve this error, to start we need to look at our current AD Server settings in Exchange and that can be checked using the following cmdlet. Get-ADServerSettings As we can see…