FWIW
1- try not to write user login scripts.. try and write scripts by GROUP. Makes like much easier. Also, for stuff everyone gets, give the rights to PUBLIC or to the container (the OU)
2- the mappings (F & Z) you are seeing are the default login script which is there basically so you can install the OS.
Add the line NO_DEFAULT into your script somewhere so these don't get mapped. (I use the login script for the organization for this) No user should have a mapping (or rights!) to the root of SYS on any server, although they should have SYS/PUBLIC as a search drive
3- In the script(s) you can add options by group membership with IF/THEN clauses.. for ex:
IF MEMBER OF ".ADMINS.ACME_CO.AC" THEN
MAP ROOT M:=\\10.0.0.65\ADMIN"
ELSE
MAP (SOMETHING ELSE)
END
This way you can use one container login script and have it work for all kinds of users...
Remember you can use the MAP ROOT command to mount at a point anywhere in the filesystem and not show the lower levels (eg wherever you mount will look like /)
You can add your search drives as well (they start with Z and work backwards)
MAP ROOT INS S1:=MYSERVER\APPS
(etc)
4- Netware has much more useful (IMHO) filesystem rights, a lot like Unix. Read up on rights to determine what people need and give them only that. Users should have no NDS rights (save view) and limited filesystem rights. On top of that you get into individual file rights.. It can be really confusing as a Win admin to grok it at first, but once it gets clear it's very cool to have..
5 - you can have scripts at several levels (organization, OU and user) they run in this order and each over-writes the prior one (so anything in the user script is the final word..)
hth - Joe