51 lines
1.2 KiB
CMake
51 lines
1.2 KiB
CMake
MAP DISPLAY OFF
|
|
BREAK ON
|
|
|
|
WRITE
|
|
WRITE "Welcome %LOGIN_NAME to %FILE_SERVER."
|
|
WRITE "Today is %MONTH_NAME %DAY, %YEAR - %HOUR:%MINUTE %AM_PM."
|
|
WRITE "Station: %STATION"
|
|
WRITE
|
|
|
|
; Default mappings for a fresh MARS NWE installation.
|
|
; A new setup normally only has the SYS: volume, so this script does not
|
|
; reference APPS:, HOME:, CD-ROM volumes, or other file servers.
|
|
;
|
|
; Search drive for NetWare/MARS NWE utilities:
|
|
MAP INS S1:=SYS:PUBLIC
|
|
|
|
; First regular drive mapped to SYS: so command line tools have a stable
|
|
; drive letter even on a one-volume installation.
|
|
MAP *1:=SYS:
|
|
|
|
; Examples for local customisation. Enable only after creating the
|
|
; corresponding directories or volumes.
|
|
;
|
|
; User home directory on SYS:
|
|
; IF MEMBER OF "EVERYONE" THEN
|
|
; MAP ROOT H:=SYS:HOME\%LOGIN_NAME
|
|
; END
|
|
;
|
|
; Shared directory on SYS:
|
|
; IF MEMBER OF "EVERYONE" THEN
|
|
; MAP G:=SYS:SHARED
|
|
; END
|
|
;
|
|
; Department example:
|
|
; IF MEMBER OF "SALES" THEN
|
|
; MAP S:=SYS:DEPT\SALES
|
|
; END
|
|
;
|
|
; Local DOS search path example:
|
|
; MAP INS S2:=C:\DOS
|
|
; COMSPEC=C:\COMMAND.COM
|
|
;
|
|
; Start a program after login, for example a menu:
|
|
; #SYS:PUBLIC\MENU.EXE
|
|
;
|
|
; Exit to a workstation batch file:
|
|
; EXIT "STARTNET.BAT"
|
|
|
|
WRITE
|
|
WRITE "Login script complete."
|