
Como posso desabilitar uma tarefa agendada no Windows 10? Eles me sugeriram usar, /disable
mas aparentemente essa opção já desapareceu no Windows 10 e estava disponível nas versões anteriores do Windows.
>schtasks /?
SCHTASKS /parameter [arguments]
Description:
Enables an administrator to create, delete, query, change, run and
end scheduled tasks on a local or remote system.
Parameter List:
/Create Creates a new scheduled task.
/Delete Deletes the scheduled task(s).
/Query Displays all scheduled tasks.
/Change Changes the properties of scheduled task.
/Run Runs the scheduled task on demand.
/End Stops the currently running scheduled task.
/ShowSid Shows the security identifier corresponding to a scheduled task name.
/? Displays this help message.
Examples:
SCHTASKS
SCHTASKS /?
SCHTASKS /Run /?
SCHTASKS /End /?
SCHTASKS /Create /?
SCHTASKS /Delete /?
SCHTASKS /Query /?
SCHTASKS /Change /?
SCHTASKS /ShowSid /?
Duvido delete
que realmente o desative.
Como posso fazer isso então?
ATUALIZAR:
eu tenho que fazer issoapenaspela concessionáriaschtasks
Responder1
Utilize Powershell!
Disable-ScheduledTask -TaskName "Adobe Flash Player Update"
TaskPath TaskName State
-------- -------- -----
\ Adobe Flash Player Updater Disabled
EDITAR:
com o uso schtasks.exe:
schtasks.exe /change /tn "Adobe Flash Player Updater" /disable
SUCCESS: The parameters of scheduled task "Adobe Flash Player Updater" have been changed.
Responder2
GUI:
- Abra o "Agendador de Tarefas"
- Abra "Biblioteca do Agendador de Tarefas" -> "Microsoft" -> "Windows", "Experiência de Aplicativo".
- Desative o “Microsoft Compatibility Appraiser” clicando com o botão direito.
DMC:
schtasks /Change /Disable /TN "Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser"
Responder3
A maneira mais fácil é usar o snap-in MMC do Agendador de tarefas. Você pode digitar “Agendador de tarefas” na caixa de pesquisa da Cortana ou executar mmc.exe e adicionar o snap-in manualmente. Depois de obter a GUI, basta clicar com o botão direito na tarefa e escolher "desativar" - ela ainda está lá, apenas oculta :) Não sei por que a linha de comando mudou - estranho...