NetStorage login scripts
Novell Cool Solutions: Question & Answer
Reader Rating
from 2 ratings
Q:
We are interested in NetStorage, and like the fact that it can run login scripts.
Is there a way to run a different script when users are logging in via Netstorage, or maybe just exclude certain lines from the normal script?
A:
Try:
Sample Container Login Script:
; NetStorage Drive Mappings IF <WEBACCESS> = "1"The webacc section is what the user will see in NetStorage.
MAP G:=\\10.253.52.20\USERS\City\Teachers\%CN
MAP I:=\\10.253.52.20\VOL1\City\School\TEACHERS
; Novell Client Drive Mappings
ELSE
MAP ROOT G:=.Server1_USERS.Services.Location.ORG:City\Teachers\%CN
MAP ROOT I:=.Server1_VOL1.Services.Location.ORG:City\School\TEACHERS
END
Novell Cool Solutions (corporate web communities) are produced by WebWise Solutions. www.webwiseone.com
Reader Comments
- F
= "1" should be moved down to a new line below the comment ex. ; NetStorage Drive Mappings IF = "1" MAP G:=\10.253.52.20\USERS\City\Teachers\%CN etc, etc..... - Exactly what I was looking for! And it even works!