Here is a small portion of the login script:

;kixstart.kix
;PFS Login Script 10/26/06

BREAK OFF

SetConsole ("MAXIMIZE")

cls

;Avoid installing unneeded applications on PFS servers
If @WKSTA = "server"
or @WKSTA = "server"
or @WKSTA = "server"
?"This is a Server, exiting script"
Sleep 2
Return

ELSE
ENDIF

?"SYSTEM***************"
?"User: @FULLNAME"
?"System: @HOSTNAME"
?"DC: @LSERVER"
?"Domain: @DOMAIN"
SETTIME "\\server"
?" "

?"PRINTERS***************"

DelPrinterConnection ("\\server\Accounting")
DelPrinterConnection ("\\server\Administration")
DelPrinterConnection ("\\server\Bankruptcy")
DelPrinterConnection ("\\server\Collections East")
DelPrinterConnection ("\\server\Collections West")
DelPrinterConnection ("\\server\Customer Service")
DelPrinterConnection ("\\server\IS-Dept")
DelPrinterConnection ("\\server\IT-Dept")
DelPrinterConnection ("\\server\Recovery")
DelPrinterConnection ("\\server\Funding")
DelPrinterConnection ("\\server\Tellers")
DelPrinterConnection ("\\server\Underwriting")

IF INGROUP ("Accounting PRN")
?"Adding Printers for Accounting Print Group->"
AddPrinterConnection ("\\server\Accounting")
AddPrinterConnection ("\\server\Check Printer")
AddPrinterConnection ("\\server\Collections West")
AddPrinterConnection ("\\server\Collections East")
AddPrinterConnection ("\\server\Recovery")
AddPrinterConnection ("\\server\Funding")
AddPrinterConnection ("\\server\Underwriting")
SetDefaultPrinter ("\\server\Accounting")
?"Default Printer \\server\Accounting"
ENDIF