0

I want to write a batch file that sends the same http request everyday at a specific time.

I have tried this :

start http://mysite.org
exit
Mark
  • 3,609
  • 1
  • 22
  • 33
pharaon450
  • 493
  • 3
  • 9
  • 21

1 Answers1

0

Use wget for Windows. It can send any request to given address.

wget http://mysite.org
jdiver
  • 2,228
  • 1
  • 19
  • 20