Como habilitar / iniciar e interromper / desabilitar o Serviço Windows Update em cmd
?
Você pode fazer isso usando os comandos sc
.
- Atribua os comandos a um atalho ou adicione-os a um arquivo de lote e atribua o arquivo de lote a um atalho.
- Para fazer o mesmo com qualquer outro serviço, substitua
wuauserv
pelo nome do serviço.
Ativar / iniciar :
sc config wuauserv start= auto & sc start wuauserv
Parar / Desativar :
sc stop wuauserv & sc config wuauserv start= disabled
Exemplo de saída :
> sc config wuauserv start= auto & sc start wuauserv
[SC] ChangeServiceConfig SUCCESS
SERVICE_NAME: wuauserv
TYPE : 20 WIN32_SHARE_PROCESS
STATE : 2 START_PENDING
(NOT_STOPPABLE, NOT_PAUSABLE, IGNORES_SHUTDOWN)
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x7d0
PID : 1204
FLAGS :
> sc stop wuauserv & sc config wuauserv start= disabled
SERVICE_NAME: wuauserv
TYPE : 20 WIN32_SHARE_PROCESS
STATE : 3 STOP_PENDING
(NOT_STOPPABLE, NOT_PAUSABLE, IGNORES_SHUTDOWN)
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x1
WAIT_HINT : 0x7530
[SC] ChangeServiceConfig SUCCESS
Leitura Adicional
- Um índice A-Z da linha de comando do Windows CMD - Uma excelente referência para todas as coisas relacionadas à linha do Windows cmd.
- sc - Controle de serviço - Crie, inicie, pare, consulte ou exclua qualquer serviço do Windows.