Link to home
Start Free TrialLog in
Avatar of bootneck2222
bootneck2222

asked on

How do I get a logon script to display a web page on login

Please help

I am currently using a .bat file as a logon script in a Windows 2000 domain. I would like the script to include a line which would cause a web page to open when the user has logged in. The page would be a welcome page that might either be something like welcome.htm or welcome.php

Is it possible to do this without the use of VB? If VB is required, how is this done.

Also the web page is on a web server how is written into the script?  www.webserver.com/welcome.htm?

Any help would be greatly appreicated.

Bootneck2222
ASKER CERTIFIED SOLUTION
Avatar of Chris Dent
Chris Dent
Flag of United Kingdom of Great Britain and Northern Ireland image

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

Web page address might have been better described as path ;)

eg

start www.google.com

or

start c:\website\index.html

Both will work quite happily.
Have you tried a command like this:

start c:\progra~1\intern~1\IEXPLORE.EXE www.google.com
It would be easy to do this - First, create the page & open in it IE, the drag the link to the dektop, and it will create a shortcut called "google.url" (for google) or something like that.
place this shortcut wherever you want, then in your login script, just type a line "google.url" for example.  IE (or whatever your default browser is) will open and display the page.
Avatar of bootneck2222
bootneck2222

ASKER

Chris,

Many thanks for this.

Bootneck2222
Pleasure