NetWare 4.1/9000 Concepts

1-91
NetWare Glossary
L
User login script. The following is an example of a user login script for
MARY. The user login script executes after container and profile login
scripts.
IF DAY_OF_WEEK = “FRIDAY” THEN
WRITE “Weekly progress report is due today.”
FIRE PHASERS 2 TIMES
END
On Fridays, the phaser sound occurs
twice to alert the user while the
message “Weekly progress report is
due today” displays on the screen.
PCCOMPATIBLE
EXIT “NMENU WORK”
Stops the profile login script and sends
the user into a menu program called
WORK.
EXIT also prevents user login scripts
from executing. If you want a user
login script to execute after the profile
script, put these lines at the end of the
user login script instead.
DOS workstations with the machine
name IBM_PC do not need the
PCCOMPATIBLE line.
Table 1-8 Sample user login script
Login script commands Purpose
MAP DISPLAY OFF Prevents map commands from
displaying on the screen as they are
assigned.
MAP ERRORS OFF Prevents mapping errors from
displaying on the screen.
MAP *7:=VOL1:MARY\PROJECTS\RESEARCH Maps Mary’s seventh network drive
(after those assigned in the container
and profile scripts) to the RESEARCH
subdirectory in her home directory.
Table 1-7 Sample profile login script
Login script commands Purpose