I am running into this error in the event viewer on my NT 4.0 Servers:

Failed to retrieve NIC adddress Error: Your file waiting to be printed was deleted (0x3/63)

It is an error tied to Kixtart. The script that we are running to do logon looks like this:

;***************************************
; OPENING SCREEN
;***************************************
cls
at( 5,5) "GOOD MORNING, @USERID..."
at( 6,10) "Domain: "+@LDOMAIN
at( 7,10) "Server: "+@LSERVER
at( 8,10) "User: "+@USERID
?
?
;***************************************
; SYNCHRONIZE WORKSTATION TIME
;***************************************
;? "Synchronizing Time..."
;if @INWIN=2
; shell "NET TIME "Server1" /SET /YES > NUL"
;else
; shell "NET TIME "Server1" /SET /Y"
;endif
;?
;?

;***************************************
; SYNCHRONIZE WORKSTATION TIME
;***************************************
;? "Synchronizing Time..."
;net time "\\Server1 /set /Y"
;?
;?


;***************************************
; BASIC DRIVE MAPPINGS FOR ALL USERS
;***************************************
? "Connecting Drives..."
?
use G: /DELETE
use G: "\\Server2\EVERYONE"
?"\\Server2\EVERYONE"
use I: /DELETE
USE I: \\Server2\PMLP_APPS
?"\\Server2\PMLP_APPS"
use H: /DELETE
use H: "\\Server2\PMLPUSERS"
? "\\Server2\PMLPUSERS"



;***************************************
; GROUP DRIVE MAPPINGS
;***************************************
;*** MIS GROUP ***
if ingroup("MIS")
use S: /DELETE
use S: "\\Server2\ARCHIVE"
?"\\Server2\ARCHIVE"
; use T: /DELETE
; use T: "\\Server3\TECHNET"
; ?"\\Server3\TECHNET"
endif


;*** Accounting Group ***
;if ingroup("ACCTG")
; use U: /DELETE
; use U: "\\Server3\CHECKSCAN"
; ?"\\Server3\CHECKSCAN"
;endif


;*** Cognos Group ***
;if ingroup("Cognos Users")
; use N: /DELETE
; use N: \\Server4\ULTIPRO
; ? "\\Server4\ULTIPRO"
;endif
?
?

;****************************************
; LOGIN SCRIPT COMPLETE
;****************************************
?"Script Processing Complete!
Have a Good Day!"
?
exit

Any ideas?

Mike