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
  • 28,064
krumiya
  • 161

2 Answers2

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
  • 57,289
0

a mini script for bulk import:

@set user=xxxxxx
@set pwd=xxxxxx

@for %%d in (*.xml) do ( schtasks /Create /XML "%%d" /RU %user% /RP %pwd% /TN "%%d" )

Enim
  • 11