16

I have created a scheduled task in Windows 7. The task is running perfectly well on my computer.

I have also exported the task to an XML file and want to create the same task on another computer automatically. How can I import the XML file pragmatically in Task Scheduler on the second computer?

fixer1234
  • 27,064
  • 61
  • 75
  • 116
krumiya
  • 161
  • 1
  • 1
  • 4

1 Answers1

20

You can use the schtasks command:

schtasks /Create [/S <system> [/U <username> [/P [<password>]]]] /XML <xmlfile> /TN <taskname>

For more help type schtasks /Create /? at the command prompt.

Karan
  • 55,947
  • 20
  • 119
  • 191