Post date: Dec 14, 2015 10:10:44 AM
Here's the code to toss into a batch script to disable it:
@echo offrem Below Are All Of The Exchange Services To Be Disabled...echo Disabling Microsoft Exchange Active Directory Topology (Was Automatic Startup)echo Note: This Service Seems To Be Flagged So It Cannot Be Stopped So I Added A TASKKILL Entry For It!sc config MSExchangeADTopology start= disabledsc stop MSExchangeADTopologyTASKKILL /F /IM MSExchangeADTopologyService.exeecho Disabling Microsoft Exchange Address Book (Was Automatic Startup)sc config MSExchangeAB start= disabledsc stop MSExchangeABecho Disabling Microsoft Exchange Anti-spam Update (Was Automatic Startup)sc config MSExchangeAntispamUpdate start= disabledsc stop MSExchangeAntispamUpdateecho Disabling Microsoft Exchange EdgeSync (Was Automatic Startup)sc config MSExchangeEdgeSync start= disabledsc stop MSExchangeEdgeSyncecho Disabling Microsoft Exchange File Distribution (Was Automatic Startup)sc config MSExchangeFDS start= disabledsc stop MSExchangeFDSecho Disabling Microsoft Exchange Forms-Based Authentication service (Was Automatic Startup)sc config MSExchangeFBA start= disabledsc stop MSExchangeFBAecho Disabling Microsoft Exchange IMAP4 (Was Manual Startup)sc config MSExchangeImap4 start= disabledsc stop MSExchangeImap4echo Disabling Microsoft Exchange Information Store (Was Automatic Startup)sc config MSExchangeIS start= disabledsc stop MSExchangeISecho Disabling Microsoft Exchange Mail Submission (Was Automatic Startup)sc config MSExchangeMailSubmission start= disabledsc stop MSExchangeMailSubmissionecho Disabling Microsoft Exchange Mailbox Assistants (Was Automatic Startup)sc config MSExchangeMailboxAssistants start= disabledsc stop MSExchangeMailboxAssistantsecho Disabling Microsoft Exchange Mailbox Replication (Was Automatic Startup)sc config MSExchangeMailboxReplication start= disabledsc stop MSExchangeMailboxReplicationecho Disabling Microsoft Exchange Monitoring (Was Manual Startup)sc config MSExchangeMonitoring start= disabledsc stop MSExchangeMonitoringecho Disabling Microsoft Exchange POP3 (Was Manual Startup)sc config MSExchangePop3 start= disabledsc stop MSExchangePop3echo Disabling Microsoft Exchange Protected Service Host (Was Automatic Startup)sc config MSExchangeProtectedServiceHost start= disabledsc stop MSExchangeProtectedServiceHostecho Disabling Microsoft Exchange Replication (Was Automatic Startup)sc config MSExchangeRepl start= disabledsc stop MSExchangeReplecho Disabling Microsoft Exchange RPC Client Access (Was Automatic Startup)sc config MSExchangeRPC start= disabledsc stop MSExchangeRPCecho Disabling Microsoft Exchange Search Indexer (Was Automatic Startup)sc config MSExchangeSearch start= disabledsc stop MSExchangeSearchecho Disabling Microsoft Exchange Server Extension for Windows Server Backup (Was Manual Startup)sc config wsbexchange start= disabledsc stop wsbexchangeecho Disabling Microsoft Exchange Service Host (Was Automatic Startup)sc config MSExchangeServiceHost start= disabledsc stop MSExchangeServiceHostecho Disabling Microsoft Exchange System Attendant (Was Automatic Startup)sc config MSExchangeSA start= disabledsc stop MSExchangeSAecho Disabling Microsoft Exchange Throttling (Was Automatic Startup)sc config MSExchangeThrottling start= disabledsc stop MSExchangeThrottlingecho Disabling Microsoft Exchange Transport (Was Automatic Startup)sc config MSExchangeTransport start= disabledsc stop MSExchangeTransportecho Disabling Microsoft Exchange Transport Log Search (Was Automatic Startup)sc config MSExchangeTransportLogSearch start= disabledsc stop MSExchangeTransportLogSearchecho Please Scroll Up To Check For Errors And Have A Great Day!pauseAnd to enable it again if needed:
@echo offrem Below Are All Of The Exchange Services To Be Enabled...echo Enabling Microsoft Exchange Active Directory Topology (Is Now Automatic Startup)sc config MSExchangeADTopology start= autosc start MSExchangeADTopologyecho Enabling Microsoft Exchange Address Book (Is Now Automatic Startup)sc config MSExchangeAB start= autosc start MSExchangeABecho Enabling Microsoft Exchange Anti-spam Update (Is Now Automatic Startup)sc config MSExchangeAntispamUpdate start= autosc start MSExchangeAntispamUpdateecho Enabling Microsoft Exchange EdgeSync (Is Now Automatic Startup)sc config MSExchangeEdgeSync start= autosc start MSExchangeEdgeSyncecho Enabling Microsoft Exchange File Distribution (Is Now Automatic Startup)sc config MSExchangeFDS start= autosc start MSExchangeFDSecho Enabling Microsoft Exchange Forms-Based Authentication service (Is Now Automatic Startup)sc config MSExchangeFBA start= autosc start MSExchangeFBAecho Enabling Microsoft Exchange IMAP4 (Is Now Manual Startup)sc config MSExchangeImap4 start= demandsc start MSExchangeImap4echo Enabling Microsoft Exchange Information Store (Is Now Automatic Startup)sc config MSExchangeIS start= autosc start MSExchangeISecho Enabling Microsoft Exchange Mail Submission (Is Now Automatic Startup)sc config MSExchangeMailSubmission start= autosc start MSExchangeMailSubmissionecho Enabling Microsoft Exchange Mailbox Assistants (Is Now Automatic Startup)sc config MSExchangeMailboxAssistants start= autosc start MSExchangeMailboxAssistantsecho Enabling Microsoft Exchange Mailbox Replication (Is Now Automatic Startup)sc config MSExchangeMailboxReplication start= autosc start MSExchangeMailboxReplicationecho Enabling Microsoft Exchange Monitoring (Is Now Manual Startup)sc config MSExchangeMonitoring start= demandsc start MSExchangeMonitoringecho Enabling Microsoft Exchange POP3 (Is Now Manual Startup)sc config MSExchangePop3 start= demandsc start MSExchangePop3echo Enabling Microsoft Exchange Protected Service Host (Is Now Automatic Startup)sc config MSExchangeProtectedServiceHost start= autosc start MSExchangeProtectedServiceHostecho Enabling Microsoft Exchange Replication (Is Now Automatic Startup)sc config MSExchangeRepl start= autosc start MSExchangeReplecho Enabling Microsoft Exchange RPC Client Access (Is Now Automatic Startup)sc config MSExchangeRPC start= autosc start MSExchangeRPCecho Enabling Microsoft Exchange Search Indexer (Is Now Automatic Startup)sc config MSExchangeSearch start= autosc start MSExchangeSearchecho Enabling Microsoft Exchange Server Extension for Windows Server Backup (Is Now Manual Startup)sc config wsbexchange start= demandsc start wsbexchangeecho Enabling Microsoft Exchange Service Host (Is Now Automatic Startup)sc config MSExchangeServiceHost start= autosc start MSExchangeServiceHostecho Enabling Microsoft Exchange System Attendant (Is Now Automatic Startup)sc config MSExchangeSA start= autosc start MSExchangeSAecho Enabling Microsoft Exchange Throttling (Is Now Automatic Startup)sc config MSExchangeThrottling start= autosc start MSExchangeThrottlingecho Enabling Microsoft Exchange Transport (Is Now Automatic Startup)sc config MSExchangeTransport start= autosc start MSExchangeTransportecho Enabling Microsoft Exchange Transport Log Search (Is Now Automatic Startup)sc config MSExchangeTransportLogSearch start= autosc start MSExchangeTransportLogSearchecho Please Scroll Up To Check For Errors And Have A Great Day!pause