Hey ....

I've got the following situation:
an win2000 server as domain controller.

i've made an kix login script to give drive mappings based on group membership.

here's a short quote from the script :

Quote:


;DELETE ALL DRIVERMAPPINGS

use q: /DELETE /PERSISTENT
etc etc ...

IF (INGROUP("Administrators")=1) or (INGROUP("Domain Admins")=1) or (INGROUP("Ontwikkeling")=1) or (INGROUP("Helpdesk")=1)
use f: \\xxxxx\xxxxx
@error
ENDIF





I've done the script for each mapping like above...

Now i've got the following problem:
on some clients i've got disconnected drive's when i first login after booting the system (or rebooting).
when i click on an connected drive all drives get connected.
Also after logging out and logging in again, all drives are connected perfectly.

This problem is just on some clients (2000 or XP) but it's working perfectly on most of 2000 / XP clients.

also the @error gives only "0" , so the script is (in my opinion) working perfect.
Can anybody tell me what is going wrong ?