Here is a snippet for the main .BAT file. This code is running ok.

:WINNT
REM Windows NT/2000 workstation
kix32.exe nypa.kix
goto END

When the nypa.kix file is referenced, nothing happens. I tried to put a couple of command in nypa.kix to see if it was being called, but I couldn't see anything.

I tried to put a command at the top,but nothing showed up.

;***********************************************************
; nypa.kix (formerly kixtart.scr)
;
;
;
;***********************************************************
; Put users in the "Domain Diag" global group to
; display troubleshooting info
;***********************************************************
;

If INGROUP("Domain Diag")
CALL @ldrive + "diag.kix"
Endif

;***********************************************************
; The following section is for all users in the domain.
; DO NOT EDIT THIS SECTION unless all LAN admins have agreed
; on the change, and it has been tested and approved by WPO
;***********************************************************
;
If INGROUP("Domain Users")

;Greet the user based on the time of day
$fn = @FULLNAME
$cm = InStr($fn,",")

.
.
.