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.
This script will make sure every 10 seconds that Exchange services are not disabled during installation.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
do { | |
Get-Service | Where-Object {$_.DisplayName -like "Microsoft Excha*"} | Where-Object {$_.StartType -like "Disabled*"} | Set-Service -StartupType Manual | |
Sleep 10 | |
} | |
while ($true) |
Kommentarer
Send en kommentar