Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Logon message using NT 4.0 Server with Win98 and Win2000 Clients 1

Status
Not open for further replies.

levers

IS-IT--Management
Jul 8, 2002
14
0
0
GB
We have an NT 4.0 PDC and Win 98 and Win 2000 workstations.
Does anyone know how to put a message in a users logon script that pops up on every logon and requires the user to confirm that have read before the message can be closed.

Any suggestion greatly recieved.

Cheers
Steve
 
Try this. Its a very simple bat file. but it works

@echo off
echo.
echo.
echo Here is where your message will go.
echo Then you put a pause at the end which makes them echo press a button to get the screen

to go away.
echo This is the easiest way to do it.
echo.
echo.
echo.
pause
 
Thanks for the suggestions.

The logon script works great with Win 98 PCs however it does not show up when users logon with Win 2000 Pro PCs, is there anyway to show DOS messsages at logon using Win 2000 PCs?

Cheers

Steve
 

How about using this:

net send %username% YOUR TEXT HERE


You should leave the "%username%" variable in there... it will apply to who ever the user is that is logging in.

Try this from the command prompt first to see if it meets your needs.
 
The %username% variable will not work on 98 machines, though. If you go that route, you'd need a statement segregating the Win98 machines from the NT and 2k machines. I'd definitely check out kixstart on this problem.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top