I can run my login script localy and it works perfectly, but when I log off my machine and log back in so it runs the script from the server I only get one drive mapped "T" , any Ideas. It is a very basic script

$REGkey = "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced" WRITEVALUE($REGkey,"HideFileExt","00000000","REG_DWORD")

If InGroup("urfcu-tech")
USE "T:" "\\fileserv\dept\tech$"
If AddPrinterConnection ("\\unity\brotherh") = 0
? "Added printer connection...."
If SetDefaultPrinter ("\\unity\brotherh") = 0
? "Set default printer to \\unity\brotherh"
Endif

IF INGROUP("urfcu-cs")
USE "S:" "\\fileserv\cardsource"
EndIf

IF INGROUP("Domain Users")
USE "P:" "\\fileserv\apps\apps"
EndIf

I am very green to this KixStart, so any help would be appreciated.