@echo off :: Stops the services listed below :: mmsminisrv = Acronis Managed Machine Service Mini :: afcdpsrv = Acronis Nonstop Backup Service :: ArcSch2Svc = Acronis Scheduler 2 Service :: syncagentsrv = Acronis Sync Agent Service :: mobile_backup_server = Acronis Mobile Backup Server :: mobile_backup_status_server = Acronis Mobile Backup Status Server echo Press any button to STOP the following Acronis services echo mmsminisrv, afcdpsrv, AcrSch2Svc, syncagentsrv, mobile_backup_server, and mobile_backup_status_server pause>nul :: The following commands STOPS these services sc stop "mmsminisrv" sc stop "afcdpsrv" sc stop "AcrSch2Svc" sc stop "syncagentsrv" sc stop "mobile_backup_server" sc stop "mobile_backup_status_server" echo Press any button to set the Startup type of the following services to DISABLED echo mmsminisrv, afcdpsrv, AcrSch2Svc, syncagentsrv, mobile_backup_server, and mobile_backup_status_server pause>nul :: The following commands change the startup type of these services to DISABLED ::sc config "mmsminisrv" Start= disabled sc config "afcdpsrv" Start= disabled ::sc config "AcrSch2Svc" Start= disabled ::sc config "syncagentsrv" Start= disabled sc config "mobile_backup_server" Start= disabled sc config "mobile_backup_status_server" Start=disabled echo Press any button to close this window echo otherwise, it will automatically close in 10 seconds... timeout /t 10