@echo off :: Starts 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 START the following Acronis services echo mmsminisrv, afcdpsrv, AcrSch2Svc, syncagentsrv, mobile_backup_server and mobile_backup_status_server pause>nul :: The following commands start the services sc start "mmsminisrv" ::sc start "afcdpsrv" sc start "AcrSch2Svc" sc start "syncagentsrv" :: sc start "mobile_backup_server" :: sc start "mobile_backup_status_server" echo Press any button to set the Startup type of the following services to AUTOMATIC echo mmsminisrv, afcdpsrv, AcrSch2Svc, syncagentsrv, mobile_backup_server and mobile_backup_status_server pause>nul :: The following commands change the startup type to Automatic sc config "mmsminisrv" Start= auto ::sc config "afcdpsrv" Start= auto sc config "AcrSch2Svc" Start= auto sc config "syncagentsrv" Start= auto ::sc config "mobile_backup_server" Start= auto ::sc config "mobile_backup_status_server" Start=auto echo Press any button to close this window echo otherwise, it will automatically close in 10 seconds... timeout /t 10