-
WINDOWS > comment ne plus démarrer le service Planificateur de tâches (schedule)
Pour changer le type de démarrage du service Planificateur de Ta^ches (Schedule) :
[
WIN]+[R] >cmd
Pour un démarrage Automatique, taper :
REG add "HKLM\SYSTEM\CurrentControlSet\services\Schedule" /v Start /t REG_DWORD /d 2 /fPour un démarrage Manuel, taper :
REG add "HKLM\SYSTEM\CurrentControlSet\services\Schedule" /v Start /t REG_DWORD /d 3 /fPour un démarrage Désactivé, taper :
REG add "HKLM\SYSTEM\CurrentControlSet\services\Schedule" /v Start /t REG_DWORD /d 4 /fPour un démarrage Automatic (Delayed Start), taper :
REG add "HKLM\SYSTEM\CurrentControlSet\services\Schedule" /v Start /t REG_DWORD /d 2 /fNote: When you change to Automatic (Delayed Start) a new key DelayedAutostart is created with value 1.
REG add "HKLM\SYSTEM\CurrentControlSet\services\Schedule" /v DelayedAutostart /t REG_DWORD /d 1 /fWhen you change to Automatic from Automatic (Delayed Start), DelayedAutostart change value to 0.
REG add "HKLM\SYSTEM\CurrentControlSet\services\Schedule" /v DelayedAutostart /t REG_DWORD /d 0 /f