Unable to run Office 365 / Exchange Hybrid Wizard – “Content was blocked because it was not signed by a valid security certificate”

Unable to run Office 365 / Exchange Hybrid Wizard – “Content was blocked because it was not signed by a valid security certificate”

Problem

From the Exchange Admin Center you run the Hybrid configuration setup

Hybrid1

You are prompted to login to Office 365

Hybrid2

You enter your credentials

Hybrid3

And then receive this message / warning

 

Hybrid4

You are unable to complete the Hybrid configuration

 

Solution

You can resolve this issue by installing the certificate as follows:

1: Click on the security report icon (the lock symbol in the browser address bar)

2: Click View Certificates

Hybrid5

3: Click “Install Certificate”

Hybrid6

4: Select “Local Machine” and click next

Hybrid7

5: Click Next

Hybrid8

6: Click Finish

Hybrid9

7: Click Ok

Hybrid10

8: Restart Internet Explorer & the Exchange Admin Center.

9: Click enable on the Hybrid setup

10: Log into Office 365 when prompted

You will be returned to the Hybrid setup page

Hybrid1

This time, when you click Enable, the Exchange Hybrid setup wizard will start

Hybrid11

 

How to enable MAC address spoofing on a Hyper-V 2012 R2 Virtual Machine using PowerShell

I recently had to enable MAC address spoofing on the network adapters of two virtual machines deployed on Hyper-V 2012.  Here’s how I did it using PowerShell:

First, use the following command to take a look at the current configuration of our network adapter

Get-VMNetworkAdapter -VMName  VirtualMachineName –ComputerName HyperVHostName |fl Name,MacAddressSpoofing

MAS-1

  • VMName = Virtual Machine Name
  • Computer Name = Hyper-V host name

MAS-2

  • Name = Virtual Network Adapter Name

We can see that MacAddressSpoofing is currently Off

Run the following command to turn MacAddressSpoofing On

Set-VMNetworkAdapter  VMName VirtualMachineName –ComputerName HyperVHostName –VMNetworkAdapter  NetworkAdapterName -MacAddressSpoofing On

MAS-3

Re-run the following command to verify MacAddressSpoofing is On

Get-VMNetworkAdapter -VMName  VirtualMachineName –ComputerName HyperVHostName |fl Name,MacAddressSpoofing

MAS-4