How to import a scheduled task automatically from an XML file?

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?

1 Answer

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.

0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like