Link to home
Start Free TrialLog in
Avatar of dignified
dignified

asked on

Loading Web Pages in the Background

How can I load a website in the background? For instance, in linux you can do something like:

curl http://mydomain.com/load.php

or

lynx http://mydomain.com/load.php


I know I can just have a batch script with the lines:
firefox.exe http://mydomain.com/load.php

But it will load a new window each time I call it every hour. I want to make it run in the background as much as possible.
ASKER CERTIFIED SOLUTION
Avatar of RubenvdLinden
RubenvdLinden

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of dignified
dignified

ASKER

Is there any way to open a new window or tab and then have it close automatically?

I couldn't get the windows version of curl to work properly because the dlls wouldn't play nice.
In Windows XP you can use TaskKill to 'kill' programs from the command line.
It is described here: http://commandwindows.com/taskkill.htm
I'm sure finding the right process is loads of fun. I just realized the task manager in XP only lets you do a daily, not hourly task. Oye, now I know why I use Linux..