developer tip

명령 줄로 Windows 스케줄러를 시작하는 방법은 무엇입니까?

copycodes 2020. 11. 23. 08:20
반응형

명령 줄로 Windows 스케줄러를 시작하는 방법은 무엇입니까?


Schtasks에서 시작하지 않고 명령 줄에서 기본 제공 Windows GUI를 엽니 다.


taskschd.msc Windows Vista 이상에서 사용할 수 있습니다.

http://technet.microsoft.com/en-us/library/cc721871.aspx

비스타 이전에 말씀하신 것과 같은 작은 작업 스케줄러 GUI를 보았지만 "예약 된 작업 추가"마법사를 생각하고 있었을 것입니다.

다음 명령을 사용하여 예약 된 작업 탐색기를 열어야 할 수도 있습니다.

control schedtasks

안타깝게도 명령 줄에서 "예약 된 작업 추가"마법사를 실행할 방법을 찾을 수 없었습니다 (방법이 있어야합니다!).


서버에서 Windows 2003을 사용하고 있습니다. 나는 "SCHTASKS.EXE"를 사용하고 있습니다.

    SCHTASKS /parameter [arguments]

    Description:
        Enables an administrator to create, delete, query, change, run and
        end scheduled tasks on a local or remote system. Replaces AT.exe.

    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 immediately.

        /End            Stops the currently running scheduled task.

        /?              Displays this help message.

    Examples:
        SCHTASKS
        SCHTASKS /?
        SCHTASKS /Run /?
        SCHTASKS /End /?
        SCHTASKS /Create /?
        SCHTASKS /Delete /?
        SCHTASKS /Query  /?
        SCHTASKS /Change /?

    ┌─────────────────────────────────────┐
    │ Executed Wed 02/29/2012 10:48:36.65 │
    └─────────────────────────────────────┘

그것은 매우 흥미롭고 나를 너무 강력하게 만듭니다. :)


이렇게하면 예약 된 작업 MMC 제어판이 시작됩니다.

%SystemRoot%\system32\taskschd.msc /s

이전 버전의 Windows에는 MMC 제어판 용 스플래시 화면이 있었고 / s 스위치는이를 억제했습니다. 필요하지는 않지만 아프지도 않습니다.


예, GUI는 XP에서 사용할 수 있습니다. 예약 된 작업 목록 (GUI는 아님)을 다음 명령으로 열 수 있습니다.

control.exe  schedtasks

그런 다음 마법사를 사용하여 예를 들어 새 예약 된 작업을 추가 할 수 있습니다.

XP에서는 "예약 된 작업"을 검색 한 다음 "단계별 지침"을 클릭하고 스케줄러 GUI를 열면 Windows 도움말에서 스케줄러 GUI를 찾을 수 있습니다. 마지막 링크를 클릭하면 다음 명령이 실행됩니다. 명령 줄에서 스케줄러 GUI를 여는 것으로 변환 될 수 있습니다. 누구든지 방법을 알고 있습니까?

ms-its:C:\WINDOWS\Help\mstask.chm::/EXEC=,control.exe, schedtasks CHM=ntshared.chm FILE=alt_url_windows_component.htm

간단한 명령 줄 스케줄러 "at"를보고 싶을 수 있습니다.


C:\Documents and Settings\mahendra.patil>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.


Here is an example I just used:

at 8am /EVERY:M,T,W,Th,F,S,Su cmd /c c:\myapp.exe

The result was:

Added a new job with job ID = 1

Then, to check my work:

at

You can make a new shortcut to:

control schedtasks

Name it something easy like "tsks.lnk" and then save it in c:\windows\system32.

You can now press Windows Key + R, then type "tsks" and press Enter and voila. No mouse necessary at that point.
Or in Windows Vista/7/2008, just press Windows Key, then type "tsks" and press Enter.


You can use either TASKSCHD.MSC or CONTROL SCHEDTASKS

Here are some more such commands.


I'm also running XP SP2, and this works perfectly (from the command line...):

start control schedtasks

If you’re asking what I think you’re asking, you can open it by executing this:

explorer.exe "C:\WINDOWS\Tasks\"

참고URL : https://stackoverflow.com/questions/396099/how-to-launch-windows-scheduler-by-command-line

반응형