Run system URL daily through Windows task scheduler

Asked

Viewed 2,001 times

-3

I would like to schedule a task in the Windows Task Scheduler. It consists of, daily, at a certain time, opening the browser and executing a certain URL (which will perform some tasks {Inserts, updates..) of a software).

I already know how to schedule the task. I only need the . bat script that will open the browser and run the URL. Someone who can help me?

1 answer

2


Starting from the point you already know how to schedule the task, then create a batch file (*.bat) with the following line and schedule its execution:

start https://answall.com

This will make your default browser open the informed URL.

Another alternative is to schedule a task by requesting the execution of the desired browser and passing the URL as argument.

Tarefa agendada para ser executada no Firefox, mesmo que o navegador padrão seja outro.

In this case the task is scheduled to run in Firefox, even if the default browser is another.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.