- Joined
- Mar 14, 2023
- Messages
- 74,309
1052 means either the service name is wrong or the service won’t accept a Stop control. Use the real short name, check status, and if it won’t stop, disable it and reboot.
Do this (Admin CMD)
1) Find the exact Acronis service names
sc config ActiveProtectionService start= auto
sc start ActiveProtectionService
If any sc query returns “The specified service does not exist,” paste the outputs from step 1 (the two findstr lines) and I’ll give you the exact names to use on your system.
Do this (Admin CMD)
1) Find the exact Acronis service names
- List Acronis services and drivers:
sc query type= service state= all | findstr /i acronis
sc query type= driver state= all | findstr /i acronis
Typical short names include: ActiveProtectionService, AcrSch2Svc, mms, afcdpsrv, tib_mounter_monitor, syncagentsrv.
- Example for Active Protection (adjust to the name you saw in step 1):
sc query ActiveProtectionService
sc stop ActiveProtectionService
sc config ActiveProtectionService start= disabled - Do the same for these common ones (they can slow the system while stuck):
sc stop mms & sc config mms start= disabled
sc stop AcrSch2Svc & sc config AcrSch2Svc start= disabled
sc stop afcdpsrv & sc config afcdpsrv start= disabled
sc stop tib_mounter_monitor & sc config tib_mounter_monitor start= disabled
sc stop syncagentsrv & sc config syncagentsrv start= disabled
- Boot to Safe Mode (Settings > System > Recovery > Advanced startup > Restart now > Startup Settings > press 4).
- In Safe Mode run the same sc stop / sc config commands.
- As a last resort, set Start=4 (Disabled) in the registry, then reboot:
reg add "HKLM\SYSTEM\CurrentControlSet\Services\ActiveProtectionService" /v Start /t REG_DWORD /d 4 /f
(Repeat for any other troublesome Acronis services you listed.)
- sc query ActiveProtectionService
- If STATE = STOPPED and Start Type = DISABLED, you’ve successfully turned it off.
sc config ActiveProtectionService start= auto
sc start ActiveProtectionService
If any sc query returns “The specified service does not exist,” paste the outputs from step 1 (the two findstr lines) and I’ll give you the exact names to use on your system.