Yes, I put all the .dll's on the sysvol too.
I get the login script running message so I know that it starts the program it just doesn't run my script. Here are the two scripts that I have:
Logon.bat%\..\kix32 %\..\logon.kix
and my script:
? "Login script running..."
? " Synchronizing your system's clock..."
;synchronize with time server
SETTIME \\Executive
IF @error = 0
? "System clock synchronized"
ELSE
MESSAGEBOX ("Cannot synchronize the system clock. Please inform your administrator.",:XYZ Login Script", 0)
ENDIF
? "Now mapping network drives..."
?
;delete any previous drive mappings and check for errors
USE "*" /DELETE
IF @error = 0
?"Previous mappings deleted..."
ELSE
MESSAGEBOX ("Cannot delete previous drive mappings. Please inform your administrator.",:XYZ Login Script", 0)
ENDIF
;MAP Drives by Group Membership
;Map Domain Dynamics to L: drive
IF INGROUP ("Dynamics") = 1
use L: "\\Executive\Dynamics"
? "Dynamics drive mapped"
;Map Domain Raisers Edge to S: drive
IF INGROUP ("Raisers Edge") = 1
use S: "\\Executive\Rewin"
? "Raiser's Edge drive mapped"
ENDIF
;Map common drives for Domain Users
IF INGROUP ("Domain Users"0 = 1
use O: \\Executive\shared
use K: \\Router\Ashared
use H: @HOMESHR
? :Global Drives and Home Directories Mapped"
ENDIF
EXIT
Any ideas?