다음과 같이 명령 줄에서 작업을 만들 수 있습니다.
schtasks /create /tn SomeTask /tr "do.bat arg1 arg2" /sc ONCE /st 00:00:00 /sd 01/01/1991
이제 삭제해야합니다. 그러나 명령을 확인해야하며 BATCH 파일 (bat / cmd)에서 명령을 수행하는 방법을 모르겠습니다.
C:\> schtasks /delete /tn ContextSwitchTask
WARNING: Are you sure you want to remove the task "ContextSwitchTask" (Y/N)?
C:\> echo Y | schtasks /delete /tn ContextSwitchTask
WARNING: Are you sure you want to remove the task "ContextSwitchTask" (Y/N)? Y
ERROR: Invalid input.
Type "SCHTASKS /DELETE /?" for usage.
질문 : 예약 된 작업을 삭제하고 예를 수행하는 방법은 무엇입니까?