Forum Home
Press F1
 
Thread ID: 101675 2009-07-22 22:02:00 How to auto open a web page? stuffed (1469) Press F1
Post ID Timestamp Content User
794261 2009-07-22 22:02:00 Does anyone know of a simple application to open a set web page at a set time?!
Without having to write script or use Outlook………
Thanks
stuffed (1469)
794262 2009-07-22 23:47:00 Not sure if you are using Firefox or IE, but FireFox has the option to save the webpages that you are viewing and when firefox restarts it reloads those tabs. You can set a scheduled task in windows to launch firefox at a particular time and it will reload those pages for you when Firefox starts. Hope this helps in anyway. ronyville (10611)
794263 2009-07-23 00:10:00 Sorry - should have said - IE stuffed (1469)
794264 2009-07-23 00:41:00 Sse Scheduled tasks to run a batch file which contains:



iexplore.exe http://typewebsitehere.com
jwil1 (65)
794265 2009-07-23 00:49:00 From the command prompt, you can (for example) execute

start "http://www.google.com"

& that will bring up your default browser with the specified web page. This is the same behaviour as typing the URL after choosing Start->Run.

If you wanted to do that at a set time, you could add this to the Run line in a Scheduled Task:

%comspec% /c "start http://www.google.com"
MushHead (10626)
794266 2009-07-23 03:20:00 Thanks you guys but did mention “simple” – all ok for you experts but for us old sods – need something really basic!! stuffed (1469)
794267 2009-07-23 04:12:00 Simple, I guess, is having a computer that reads your mind and knows exactly what you want to do at any given moment and then does it for you. Sweep (90)
794268 2009-07-23 04:23:00 From the command prompt, you can (for example) execute

start "http://www.google.com"

& that will bring up your default browser with the specified web page. This is the same behaviour as typing the URL after choosing Start->Run.

If you wanted to do that at a set time, you could add this to the Run line in a Scheduled Task:

%comspec% /c "start http://www.google.com"

It doesn't get a lot more simple than this. :)
wratterus (105)
794269 2009-07-23 10:39:00 Thanks you guys but did mention “simple” – all ok for you experts but for us old sods – need something really basic!!

This is basic! - or at least as basic as it's going to get. Assuming you have XP (with Vista you have to go through Administrative Tools first & the layout's different after, too), go to Control Panel, open Scheduled Tasks, then add a new task. You have to set up a task name & a schedule, but in the Run box, just type the example I gave (changing the web address, presumably) & save it.

You can test the task by right-clicking on it in the Scheduled Tasks window & choosing Run.

If you have a really simple schedule (like daily, weekly, etc), you can do it via the command prompt using the "AT" command, but I don't want to scare you off by making you delve into the command prompt... :)
MushHead (10626)
794270 2009-07-24 22:23:00 Thanks again – have eventually found the run command and worked through it but now XP Pro is saying that “you do not have permission to perform this task”! There is only one account on this PC – me as administrator - now what!
Thanks
stuffed (1469)
1 2