Link to home
Start Free TrialLog in
Avatar of Molly s
Molly sFlag for India

asked on

task scheduler

Can we disable "User Task - Certificate Services Client Task" & System Sound service  from task scheduler in windows 2008
Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

you can create a batch file that execute the SC commands, and assign it in task scheduler.

sc config "User Task - Certificate Services Client Task" start= disabled
sc stop "User Task - Certificate Services Client Task"

Open in new window


Disable a Windows service from the command line
https://serverfault.com/questions/671321/how-do-i-create-a-task-scheduler-to-restart-a-software-service-in-windows-server

Sc config
https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/cc990290(v=ws.11)
Avatar of Molly s

ASKER

will it impact if we disable task scheduler of  Certificate Services Client Task/system task
ASKER CERTIFIED SOLUTION
Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial