If you notice that your Exchange services are all Disabled, you can use this to set them back to Automatic:
Get-Service | Where-Object { $_.DisplayName –like “Microsoft Exchange *” } | Set-Service –StartupType Automatic
Then you can use this to start them all:
Get-Service | Where-Object { $_.DisplayName –like “Microsoft Exchange *” } | Start-Service