:Q
I guess you didn't understand what I meant...hmm, my scripting is a little rusty so you have to read it up for yourself or ask others for help, but here is step by step howto create a Roamming profile:
1. Start > Programs > Administrative Tools > User Manager for Domains (to start User Manager for Domains)
2. Click, on the apropriate user > Profiles (or create the users)
3. In the User Profile Path enter the network share location where the profile should go,
\\servername\share name\user name = e.g G:\winnt\profiles\kw7
%systemroot%/profiles/%username% = e.g G:\winnt\profiles\kw7
4. Then Click OK to finish.
To make the profile mandatory, rename the file ntuser.dat to ntuser.man, located at the base of the profile location.
Logon Script for group:
IF INGROUP "ROAMING"
NET USE G: "\\SERVERNAME\SHAREDFOLDER"
END
or you clould try this for user:
IF "%USERNAME%"
NET USE G: "\\SERVERNAME\SHAREDFOLDER"
END