Office 365 Certificate issue

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Office 365 Certificate issue
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
11-26-2018 09:34 AM
Hello,
I"m getting an error getting SSO and O365 to work. When I run the Microsoft connectivity analyzer test, I get the error below:
Testing the SSL certificate to make sure it's valid. The SSL certificate failed one or more certificate validation checks.
Test Steps The Microsoft Connectivity Analyzer is attempting to obtain the SSL certificate from remote server aau0875.my.centrify.com on port 443. The Microsoft Connectivity Analyzer wasn't able to obtain the remote SSL certificate.
Additional Details
Re: Office 365 Certificate issue
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
3 weeks ago
jhatem,
As discussed via the Support case, the issue was that the immutableID was blank in Office 365 for your users. After setting it to the value that we are sending at login, you were able to successfully login
The commands to run are (to get it from your AD and to set it in Office 365):
(provided as courtesy)
Get-ADUser jh-test | select UserPrincipalName,ObjectGuid, @{e={[system.convert]::ToBase64String($_.ObjectGuid.ToByteArray())};l="ImmutableId" }
Set-MsolUser -UserPrincipalName <upn> -ImmutableId <immutableId>
I hope this helps.
Andrea