Apply Exchange 2013/2016 License Key using PowerShell.
| | |

Apply Exchange 2013/2016 License Key using PowerShell.

Apply Exchange 2013/2016 License Key using PowerShell. Let’s first have a look at what the current license status is by running the following. Get-ExchangeServer EX16 | Format-Table Edition,*Trial* As we can see from the below image, the server has not been licensed yet and is still running as a Trial. To set the license key,…

Exchange 2016 Installation Fails with: An attempt was made to load an assembly from a network location which would have caused the assembly to be sandboxed in previous versions of the .NET Framework
| | | |

Exchange 2016 Installation Fails with: An attempt was made to load an assembly from a network location which would have caused the assembly to be sandboxed in previous versions of the .NET Framework

Exchange 2016 Installation Fails with the following error. An attempt was made to load an assembly from a network location which would have caused the assembly to be sandboxed in previous versions of the .NET Framework Navigate to the folder with the Exchange Files using PowerShell and run the following to unblock all the Setup…

Bulk Enable Exchange Online Archiving
| | |

Bulk Enable Exchange Online Archiving

Bulk Enable Exchange Online Archiving This below script simply just enables the Online Archiving Mailbox for users in Exchange Online. The script needs to be run from the On-prem Exchange environment. $list = Import-Csv “C:\Scripts\EnableArchive\enablearchive.csv” foreach($entry in $list) { $User = $entry.User Get-RemoteMailbox -id $User |Enable-RemoteMailbox -Archive } Csv Sample. Simply has the users Alias…

Enable Mailbox Archiving Exchange Online
|

Enable Mailbox Archiving Exchange Online

Enable Mailbox Archiving Exchange Online The focus of this post is to look at two ways on how Mailbox Arching can be enabled in Exchange Online. What is Archiving? Archiving in Exchange Online (called In-Place Archiving) provides users with additional mailbox storage space. Archive mailboxes also provide an alternate storage location in which to store historical…

Exchange 2016 Hybrid Configuration
| | | |

Exchange 2016 Hybrid Configuration

Exchange 2016 Hybrid Configuration A hybrid deployment is a combination of on-premises applications and cloud-based services. For example, Exchange hybrid solutions could include using an Exchange Server on-premises and Exchange Online in Office 365. There are multiple ways to configure mail routing with a hybrid organisation, but for the purpose of this blog post, the focus will be on a non-centralised mail routing. What…

How to Configure ADFS Web Application Proxy for ADSF
| | |

How to Configure ADFS Web Application Proxy for ADSF

How to Configure ADFS Web Application Proxy for ADFS This post will cover the steps needed to configure the ADFS Web Application proxy. What is an ADFS Web Application Proxy? WAP provides reverse proxy functionality for web applications in the corporate network which allows users on most devices to access internal web applications from external…

Configure ADFS for Office 365
| |

Configure ADFS for Office 365

Configure ADFS for Office 365 Requirements: External DNS records for example: fs.o365cloudlab.co.za Internal DNS records for example: fs.thatcloud.com Valid SSL Certificate Service Account with Domain Admin rights More about the requirement can be found here at the Microsoft blog. To get started we need to install the ADSF roles and features. Run Windows PowerShell as…

Create and Complete new Exchange Certificate Request
|

Create and Complete new Exchange Certificate Request

Create and Complete new Exchange Certificate Request. The post will cover a quick guide on how to create a new Exchange Certificate Request as well and Completing the certificate request. To get started, the request file can be created from the Exchange Admin Console by following steps. From the EAC Click on Servers – Certificates…

Error Removing Exchange 2016 Mailbox Database: The mailbox database contains one or more mailboxes
|

Error Removing Exchange 2016 Mailbox Database: The mailbox database contains one or more mailboxes

Error Removing Exchange 2016 Mailbox Database: The mailbox database contains one or more mailboxes. You receive the following error when trying to remove an Exchange 2016 Mailbox Database. You have done the following already. -Move Arbitration mailboxes -Move User Mailboxes -Move Monitoring Mailboxes But yet you still receive the following error. To resolve this, we…