von MedienDeZign | Apr. 4, 2019 | Microsoft
Stimmt bei einem (freigegebenen) Postfach bei Office 365 die Sprache und Zeitzone nicht kann man sie wie folgt auf der Powershell einstellen.
Überprüfen:
Get-Mailbox | Where-Object {$_.RecipientTypeDetails -eq "SharedMailbox"} | Get-MailboxRegionalConfiguration
Auf deutsch einstellen
Set-MailboxRegionalConfiguration -id USER@DOMAIN.DOM -LocalizeDefaultFolderName:$true -Language de-DE –TimeZone "W. Europe Standard Time"
von MedienDeZign | Apr. 2, 2019 | Microsoft
die Anzahl X zugelassene ActiveSync Endgeräte kann man wie folgt anpassen
Get-ThrottlingPolicy | Set-ThrottlingPolicy –EASMaxDevices X
von MedienDeZign | Apr. 1, 2019 | DiesUndDas
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
von MedienDeZign | März 14, 2019 | Microsoft
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.
von MedienDeZign | März 8, 2019 | Microsoft
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