I have attached the error that I get and a snipet of the code that I am using to call the other .kix file.
Any help would be awesome. BTW, if I remember correctly this worked just fine on the version, just before 4.5. If need be, let me know and I can include the entire code for both files.
Thanks guys,
Chris

Code:
;Region Change History
;*******************************************************************************
;** Script: kixtart.kix
;** Created: 08-30-05
;**
;** This is the SiteName specific Kix script. It will be generally called from
;** login script via a Group Policy object.
;**
;** Please remember to comment and date any modifcations that you make.
;**
;** Please keep the Skip Logon Script portion of the script at the beginning,
;** as it checks to see if you are logging on to a Server or part of the
;** Domain Admins, IT Dept groups.
;**
;*******************************************************************************
;*******************************************************************************
; C H A N G E H I S T O R Y
;*******************************************************************************
; Date ID Description of change
;*******************************************************************************
; 08-30-05 CVC Created
;*******************************************************************************
; C H A N G E H I S T O R Y
;*******************************************************************************
;
;EndRegion
Include "Messenger.kix"
Break Off
;*******************************************************************************
;** Constant Variables
;*******************************************************************************
$MachineCookie = "HKLM\Software\CompanyName"
$UserCookie = "HKCU\Software\CompanyName"
$SysFolder = %WinDir% + '\system32'
$LocalDC = @LSERVER
$Tools = @LSERVER + '\netlogon\kix\tools'
$NetScreenSaver = @LSERVER + '\netlogon\sitename\company.scr'
$LocalScreenSaver = $SysFolder + '\company.scr'
$NetLogo = @LSERVER + '\netlogon\sitename\logo.bmp'
$LocalLogo = $SysFolder + '\newplogo.bmp'
$NetKix = @LSERVER + '\netlogon\kix\wkix32.exe'
$LocalKix = $SysFolder + '\wkix32.exe'