When running a CU on an Exchange hybrid setup the installation failed because services were disabled.
This script will make sure every 10 seconds that Exchange services are not disabled during installation.

do {
Get-Service | Where-Object {$_.DisplayName -like "Microsoft Excha*"} | Where-Object {$_.StartType -like "Disabled*"} | Set-Service -StartupType Manual
Sleep 10
}
while ($true)

Kommentarer

Populære opslag fra denne blog

Microsoft Office 2016 and the AUTO_ACTIVATE property

Access Exchange online with Office 365 multi-factor authentication (MFA/2FA)

Disable logon and logoff events (event id 4624, 4625, 4634 (and all the other ones...))