Posts

Showing posts with the label Error 1603

Exchange Hybrid Wizard Error 1603

Image
How to fix Exchange Hybrid Wizard Error 1603 This issue is related to TLS 1.2 Some links for you: Microsoft Entra Connect: TLS 1.2 enforcement for Microsoft Entra Connect - Microsoft Entra ID | Microsoft Learn The following scripts, you need to copy and same as CheckTls.ps1 and EnableTls.ps1 Frist if you run any of the following scripts, make sure UAC is disable :) Start with checking TLS Settings: FunctionGet-ADSyncToolsTls12RegValue {[CmdletBinding()]Param(# Registry Path[Parameter(Mandatory=$true,                    Position=0)][string]$RegPath,# Registry Name[Parameter(Mandatory=$true,                    Position=1)][string]$RegName)$regItem= Get-ItemProperty-Path $RegPath-Name $RegName-ErrorAction Ignore     $output= ""|selectPath,Name,Value     $output.Path = $RegPath$output.Name = $RegNameIf($regItem-eq$null){$output.Value = "Not Found"}Else{$output.Value = $reg...