Link to home
Start Free TrialLog in
Avatar of caw01
caw01Flag for United States of America

asked on

I need my users to have a web page opened when they boot their systems. What is the best way to do this? GPO, what section?

I need my users to have a web page opened when they boot their systems.  What is the best way to do this?  GPO, what section?

Xp clients and 2003 os.
SOLUTION
Avatar of OnALearningCurve
OnALearningCurve

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 RightNL
RightNL

hmmm you could add a http:// link to the startup but the problem is going to be that it won't be a onetime thing. .

easiest is to add a regkey to the runonce part of the currentuser registry...

it's under administrative templates I think or you need to create a adm ..

have a look at this

http://support.microsoft.com/kb/314488
@onalearningcurve.

I was thinking of that aswell but again it's not a one time deal..

now I think of it ..
the only way to make it one time I know of is to create a vb script that looks in the registry if it has been done already .. if not than start the page. else skip actions..
SOLUTION
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
If you want it to happen every time, then you can set the following in a batch file and run it through a GPO.

@echo off
"C:\Program Files\Internet Explorer\iexplore.exe" "http://www.google.com/"

(Obviously change the website you want to load)

If you want it to run once then you might be able to put something in the runonce key of the Current User registry to launch that batch file from the server.
RightNL,

Good point and your second post is bang on,

we used to have a small app than had to run the first time a machine logged on to the network only.  So we had it write a .txt file into c:\programfiles\folder1.

then before the app ran it checked for the .txt file and did not run if it was there.
ASKER CERTIFIED SOLUTION
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
okay.. if you want it always.. startup is the easiest ;o)

if you are happy don't forget to spread the points on the given answers ;o)