Managing Microsoft Exchange Services with Windows Powershell in Exchange 2010
To Get all the MsExchange Services Startup Type to Disabled State Get-Service | where{$_.Name –Like ‘MSExchange*’} | set-Service –StartupType ‘Disabled’ To Get all the MxExchange Services Startup Type to Automatic State Get-Service | where{$_.Name –Like ‘MSExchange*’} | set-Service –StartupType ‘Automatic’ (Starting and Stopping all Service in one Shot differs , scenario to scenario