Sorry, here is my script:

;******************************************** System Login *************************************************
BREAK OFF
SetConsole ("Hide")
cls
USE G: "\\serverH04\Policies"

IF INGROUP ("Homer")
USE S: "\\server14\Vome"
ENDIF

IF @userid="patron"
call "\\server04\policies\default\Scripts\DisableFileDownload.kix" ;Blocks Internet downloads
ENDIF

IF INGROUP ("HRights")
use h: "\\server\humanrights"
ENDIF

IF INGROUP ("Reimb")
use x: "\\000.000.000.000\Reimb"
ENDIF

IF INGROUP ("Transcription")
use w: "\\server02\Trans"
ENDIF

IF INGROUP ("FM2USERS")
use R: "\\server19\FM2"
ENDIF

IF INGROUP ("Secretaries")
call "\\server04\policies\default\Scripts\Secretaries.kix" ;Sends Login Time to a Text File
ENDIF

IF INGROUP ("LS Read") or ("LS Write")
call "\\server04\policies\default\Scripts\LSRemote.kix" ;Checks Current Version of LSUsers.exe
ENDIF

IF INGROUP ("Ava Users")
call "\\server04\policies\default\Scripts\AvaOuterJoin.kix" ;Set registry entry for Ava.
ENDIF

IF @userid = "food1"
use f: "\\server17\live"
use I: "\\server17\meals"
ENDIF

IF @userid = "food2"
use f: "\\server17\live"
use I: "\\server17\meals"
ENDIF

IF INGROUP ("Training_Users")
use o: "\\server15\e"
ENDIF

IF INGROUP ("Human_Resources")
Use H: "\\server15\HR"
ENDIF

IF INGROUP ("Acmr Users")
call "\\server04\policies\default\Scripts\acmr.kix" ;This Updates the Manager Plus pdf files on the Local Machine
ENDIF

IF INGROUP ("CPOE_Install")
call "\\server04\policies\default\Scripts\CPOEInstall.kix" ;Copys CPOE icon to desktop
ENDIF

IF INGROUP ("ACRU Users")
$Desktop=readvalue("HKEY_CURRENT_USER\SoftWare\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders","Desktop")
copy "\\server04\Policies\Default\Ava~1.lnk" "$Desktop"
ENDIF

IF INGROUP ("ACRU Admins")
USE R: "\\server17\Ava Reports"
$Desktop=readvalue("HKEY_CURRENT_USER\SoftWare\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders","Desktop")
copy "\\server04\Policies\Default\Ava~1.lnk" "$Desktop"
ENDIF



:welcome

$CheckOs = @producttype


IF INGROUP ("IT Staff")
call "\\server04\policies\default\Scripts\LoginTracking.kix" ;Makes a log of when user logs into the Domain
call "\\server04\policies\default\Scripts\board.kix" ;Checks and or Runs In-Out Board
call "\\server04\policies\default\profiles\techs\path.kix" ;Adds locations to path statement
USE T: "\\server12\Techs"
USE W: "\\server06\SUPPORT"

ENDIF
IF INGROUP ("IT Techs")
Dim $Select
messagebox ("You have Logged onto the " + @lserver + " Domain Controller","Domain Controller",64,3)
$Select = messagebox ("Do You Want To Go To IT Technician Options?","Tech Options",292,5)
if $Select = 6
call "\\server04\policies\default\profiles\techs\techs.kix" ;Displays DOS Window w/ options for techs
ENDIF
ENDIF

omainUsers
IF INGROUP ("Domain Users")
Dim $CheckDate
$CheckDate = @DAY
messagebox ("Welcome @fullname To The ????? ????? ????? Domain","Welcome", 64,3)
settime "\\server06"
call "\\server04\policies\default\Scripts\s_login2.kix" ;Creates s_login enviromental variable
call "\\server04\policies\default\Scripts\LoginWarningNotice.kix" ;Adds Warning Notice to workstation registry
call "\\server04\policies\default\Scripts\McafeeSearch.kix" ; Searches for McAfee Engine and DAT Files
IF $CheckDate = "Wednesday"
;messagebox ("Today is " + $CheckDate,"Today",64,3)
call "\\server04\policies\default\Scripts\copykix.kix" ;Copies kix to local HD
call "\\server04\policies\default\Scripts\ComputerIdentity.kix" ;Gets computer information
call "\\server04\policies\default\Scripts\deletechk.kix" ;Deletes chk files in root directory
call "\\server04\policies\default\Scripts\deletetmp.kix" ;Deletes tmp files on C:\ drive
call "\\server04\policies\default\Scripts\messaging.kix" ; loads popup
call "\\server04\policies\default\Scripts\config.kix" ; reads at workstation config.sys file for changes
call "\\server04\policies\default\Scripts\workstationcpu.kix" ; gets workstation cpu and memory info
call "\\server04\policies\default\Scripts\browsemaster.kix" ; disables browse master
call "\\server04\policies\default\Scripts\CPRTest.kix" ;Checks workstation for CPRTest
ENDIF
ENDIF

goto finish
;#################################################################################################################

:Testing

messagebox ("@fullname Your Login Script is Being Tested for Errors. You will need to login again to get any commands specific for you. If you continue to get this message then we are working on a problem.","Fixing Errors", 64,10)

:finish

exit