Server 2008 R2 – Remote Desktop – Exchange 2019

Damit User auch unter 2008 R2 mit einem Exchange 2019 sprechen können müssen Verschlüsselungsparameter am Server angepasst werden:

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2]

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client]
"DisabledByDefault"=dword:00000000 
"Enabled"=dword:00000001 

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server] 
"DisabledByDefault"=dword:00000000 
"Enabled"=dword:00000001

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\v4.0.30319 
"SchUseStrongCrypto"=dword:00000001

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\WinHttp]
"DefaultSecureProtocols"=dword:00000800

[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Internet Settings\WinHttp]
"DefaultSecureProtocols"=dword:00000800

[HKEY_CURRENT_User\Software\Microsoft\Windows\CurrentVersion\Internet Settings ]
"SecureProtocols"=dword:00000a80

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings ]
"SecureProtocols"=dword:00000a80

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Client]
"DisabledByDefault"=deword:00000000

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client]
"DisabledByDefault"=dword:00000000

Office 2019 Standard – Office Deployment Tool

Office Deployment Tool herunterladen und Office2019Standard.xml erstellen

<Configuration>
  <Add OfficeClientEdition="64" Channel="PerpetualVL2019">
    <Product ID="Standard2019Volume" PIDKEY="#####-#####-#####-#####-#####">
      <Language ID="de-de" />
    </Product>
  </Add>
  <!--  <RemoveMSI All="True" /> -->
  <!--  <Display Level="None" AcceptEULA="TRUE" />  -->
  <!--  <Property Name="AUTOACTIVATE" Value="1" />  -->
</Configuration>

Download:

 .\setup /download Office2019Standard.xml

Installation:

.\setup.exe /configure Office2019Standard.xml

Hier findet man das Office Customization Tool von Microsoft zur Erstellung eines xml Files.

Exchange – interne Autodiscover URL

Für eine konsistente Autoermittlung der Mailboxeinstellungen bei Verwenung eines offiziellen Zertifikats zusätzlich zum korrekten internen DNS Eintrag für den Server auch die interne Autodiscover URL umstellen.
Überprüfen:

Get-ClientAccessServer | fl *Auto*

Setzen:

Set-ClientAccessServer -Identity SERVERNAME -AutoDiscoverServiceInternalUri https://SERVER.DOMAIN.DOM/autodiscover/autodiscover.xml

Bei einer Migration zu Office 365 den Eintrag am lokalen Exchange Server deaktivieren:

Set-ClientAccessServer -Identity SERVERNAME -AutoDiscoverServiceInternalUri $null