Hello Everyone,

I hope I can get some help here. I'm running W2K Svr, with 50 W2k Pro clients.

I have a logon script with Kix32 (v3.63) which is running on the NETLOGON folder and specified on each user account under the "Profile" tab like this "Logon Script: kix32 \\fla-server-1\netlogon\script\scriptname.kix".

I have placed the path for the location under Group Policy for the DC under "Scripts(Logon/Logoff)>Logon>Script Name: \\fla-server-1\NETLOGON\script\scriptname.kix and Script Parameters is empty.

The script reads like this:

=======================================
CLS


;Setup User's Personal Drive
if exist ("\\fla-server-1\users\" + @userid)
USE H: "\\fla-server-1\users\%username%"
USE S: "\\fla-server-1\shared"
USE P: "\\fla-server-1\apps"
endif

;Group related Drive Mappings
if ingroup("management")
USE x: "\\fla-server-1\executive"
endif
if ingroup("Finance")
USE F: "\\fla-server-1\accounting"
endif
if ingroup("Information Technology")
USE I: "\\fla-server-1\IT"
endif
if ingroup("Human Resources")
USE L: "\\fla-server-1\HR"
endif

;Set Network Time
SETTIME "\\fla-server-1"

;Delete Workstations temp files
RUN "del %temp%"


exit

=========================================

So far, the script works...BUT every user who logs in, with the exception of the Domain Admins, get a "kix32" folder at the begining...which everyone has to actually close manually.

I would also like to add a sting to add all the printers of the within the network when a new user log in.

Can someone help me out with this request?

Thanks a million!
Hector G.