Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to run existing windows 7 task using command prompt

Tags:

I created a task in Windows 7 task scheduler.

How do I run it using the command prompt?

like image 844
Kodak Avatar asked Mar 09 '12 10:03

Kodak


People also ask

How do I run a program in Command Prompt Windows 7?

The Windows 7 Command Prompt Environment To open a Command Prompt window in which you can type commands and review output, as shown in Figure 29.1, click Start, All Programs, Accessories, Command Prompt. Alternately, click Start and type cmd in the Search box. Then, when cmd.exe has been located, press Enter.

What can I do with Command Prompt in Windows 7?

In Windows operating systems, the Command Prompt is a program that emulates the input field in a text-based user interface screen with the Windows Graphical User Interface (GUI). It can be used to execute entered commands and perform advanced administrative functions.


1 Answers

The syntax is: schtasks /Run /TN "task name"

For more information see:

Run a Task on Demand (MS TechNet)

like image 125
Kodak Avatar answered Oct 08 '22 08:10

Kodak