Ok I posted a few days ago trying to have multiple sites access the same login script for common drives. I'm going to list everything I'm doing and I hope someone can tell me whats wrong. The problem is that on a WIN95 pc the @homeshr isnt mapping to a homedrive since I added a call to a com file. sigh..here goes1st
@ECHO OFF
CALL %0\..\bkxxxenv.bat
%0\..\kix32.exe showrooms.kix
EXIT
bkxxxenv.bat <--sets the HOME server for a location, because clients auth though a NT 4 BDC and map drives to a different server (win2k) this was the only way I could make it work.
@echo off
set remoteserver=bkhous01
showrooms.kix
BREAK
IF @INWIN="1" ;If OS is WINNT or WIN2K
USE G: \\novell server here\VOL1\DATA
USE I: \\%remoteserver%\DATA
USE J: \\%remoteserver%\APPS
ELSE
USE I: \\%remoteserver%\DATA
USE H: @HOMESHR
USE J: \\%remoteserver%\APPS
SHELL %0\..\BKMAP.COM
ENDIF
CALL @USERID + ".KIX"
EXIT
Ok the W2K part works FINE
but to get the novell drive to map root I had to make a com file (runs faster then a bat) to do the maprooting for a novell drive on a 95 box..and works great 
here is the com file that does the maprooting on win95
NET USE G: \\novell server here\VOL1
G:
cd DATA
\\novell server here\SYS\PUBLIC\MAP ROOT G:
EXIT
Now the problem..when a 95 client logs in I get no homedrive map, it use to work fine before I added the call to the com file (yes I tried it as a bat file..same result)
Pls help 