como cancelar um comando agendado para o CMD

1

Acabei de agendar um comando de hibernação:

at 13:00 shutdown /h

Existe algum comando para anular esta operação agendada?

  1. shutdown /a não funcionou, ele disse que não há desligamento programado.

  2. At 12:59 shutdown /a não funcionou bem para abortar At 13:00 shutdown /h

por Ashu Kumar 16.04.2016 / 16:04

2 respostas

0

Desligamento / a só funcionará depois que o desligamento tiver sido agendado usando o comando

Portanto, espere que o evento de desligamento seja acionado e, em seguida, execute o desligamento / a

então, se você executar isso em 13.01, ele funcionará

    
por 16.04.2016 / 16:33
0

Existe algum comando para anular esta operação agendada?

at 13:00 shutdown /h

Você pode executar at para listar os trabalhos agendados. Exemplo:

F:\test>at 13:00 echo "hello"
Added a new job with job ID = 1

F:\test>at
Status ID   Day                     Time          Command Line
---------------------------------------------------------------------
        1   Tomorrow                13:00         echo hello

Isso retorna uma lista de trabalhos agendados, junto com um ID para cada trabalho.

Para excluir um trabalho agendado:

at ID /delete

Exemplo:

F:\test>at 13:00 echo "hello"
Added a new job with job ID = 1

F:\test>at
Status ID   Day                     Time          Command Line
-------------------------------------------------------------------------------
        1   Tomorrow                13:00         echo hello

F:\test>at 1 /delete

F:\test>at
There are no entries in the list.

Para excluir um trabalho agendado usando schtasks :

schtasks /delete /tn At{ID}

Em que {ID} é o ID da tarefa at .

Exemplo:

F:\test>schtasks /delete /tn At1
WARNING: Are you sure you want to remove the task "At1" (Y/N)? y
SUCCESS: The scheduled task "At1" was successfully deleted. 

Para excluir todos trabalhos agendados:

at /delete /yes

no uso

F:\test>at /?
The AT command schedules commands and programs to run on a computer at
a specified time and date. The Schedule service must be running to use
the AT command.

AT [\computername] [ [id] [/DELETE] | /DELETE [/YES]]
AT [\computername] time [/INTERACTIVE]
    [ /EVERY:date[,...] | /NEXT:date[,...]] "command"

\computername     Specifies a remote computer. Commands are scheduled on the
                   local computer if this parameter is omitted.
id                 Is an identification number assigned to a scheduled
                   command.
/delete            Cancels a scheduled command. If id is omitted, all the
                   scheduled commands on the computer are canceled.
/yes               Used with cancel all jobs command when no further
                   confirmation is desired.
time               Specifies the time when command is to run.
/interactive       Allows the job to interact with the desktop of the user
                   who is logged on at the time the job runs.
/every:date[,...]  Runs the command on each specified day(s) of the week or
                   month. If date is omitted, the current day of the month
                   is assumed.
/next:date[,...]   Runs the specified command on the next occurrence of the
                   day (for example, next Thursday).  If date is omitted, the
                   current day of the month is assumed.
"command"          Is the Windows NT command, or batch program to be run.

Leitura Adicional

por 16.04.2016 / 16:31