Are your machines set to login to the domain - ie for each user do they have the login script specified in their profile tab?
I would perhaps change your login script like this
REM Setup common to all users
net user * /d /yes
net use j: \\server\public / yes
IFMEMBER Staff
if errorlevel 1 goto StaffLogin
IFMEMBER Students
if errorlevel 1 goto StudentLogin
GOTO LoginEnd
:StaffLogin
REM Setup common for Admin staff only
net use h: \\server\staff\%username% / yes
GOTO LoginEnd
:StudentLogin
REM Setup common for Students only
net use I: \\server\students / yes
net use s: \\server\students\student
GOTO LoginEnd
:LoginEnd
REM END ****************************
Get ifmember.exe from
- Install it and copy it to your netlogon share
Once you get this working, then you can do flasher things like copy shortcuts etc.