I made an unattented winxp that works very good. The method I used for installing applications was with Runoncex but now I want to use Xplode but it doesn't work.

This is my Winnt.sif file where I ask to start xplode.exe

CODE
[Data]
AutomaticUpdates="No"
Autopartition=1
MsDosInitiated=0
UnattendedInstall="Yes"
    
[Unattended]
UnattendMode=DefaultHide
UnattendSwitch="Yes"
[indent][/indent]OemSkipEula=Yes
FileSystem=*
WaitForReboot="No"
NoWaitAfterTextMode=1
NoWaitAfterGUIMode=1
NonDriverSigningPolicy=Ignore
Hibernation="No"
Repartition=No
    OemPreinstall=Yes

[Display]
Xresolution=1280
Yresolution=1024
BitsPerPel=32
Vrefresh=60

[GuiUnattended]
AdminPassword="xxxxx"
AutoLogon = No
AutoLogonCount=0
TimeZone=105
OEMSkipRegional=1
OemSkipWelcome=1

[Shell]
CustomDefaultThemeFile="%WinDir%\Resources\Themes\VistaVG Black.theme"

[UserData]
ProductKey="XXXXXXXXXXXXXXXXXXXX"
ComputerName=*
FullName="x"
OrgName="x"

[RegionalSettings]
SystemLocale="0409"
UserLocale="0409"
UserLocale_DefaultUser="0409"
InputLocale="0409:00000813"
InputLocale_DefaultUser="0409:00000813"
Language=00000409

[URL]
Help_Page=www.microsoft.com
Search_Page=www.google.com

[Networking]
InstallDefaultComponents="Yes"

[WindowsFirewall]
Profiles=WindowsFirewall.TurnOffFirewall

[WindowsFirewall.TurnOffFirewall]
Mode=0

[Identification]
JoinWorkgroup="none"

[SetupParams]
UserExecute="WScript.exe %systemroot%\konten.js"
UserExecute="%SystemDrive%\XPlode\XPLode.exe"

[GuiRunOnce]

    command9="%SystemDrive%\DPsFnshr.exe"


De BTS drivers can install but that is after Xplode has to start.

The cd tree looks like this;

CODE
$OEM$

$$
Fonts
Resources
system32
Web

$1
Install <- programs that need to install with xplode are in here like adobeacrobat8.exe, flashplayer9.exe,...
XPlode <- all extracted from the xplode program is in here + XPlode.xml file

$Docs
Allusers

Dotnetfx

i386

OEM <- here are the drivers


This is my Xplode.xml and that I saved as a unicode file and not ANSI;

CODE
<XPlode4>
    <config>
        <display plugin='#XPLODE#\XPlodeOriginalInstall.x4d'>
            <show
                total='21'
                after='19'
                subcount='false'
            />
            <!-- make antialiasing false if you're running GUIinstall mode -->
            <font
                face='Tahoma'
                antialias='true'
                small='8'
                large='13'
            />
            <!-- note the position attribute - it is listed in 'x,y' positions. -->
            <!-- 0..8 still may be used. -->
            <window
                position='4'
            />
            <!-- can be standalone, or guiredraw -->
            <!-- for the latter two, you don't need to specify background colours, or images. -->
            <windowmode
                mode='standalone'
                border='false'
            />
            <colours>
                <header
                    back='#003399'
                    fore='#FFFFFF'
                    image='#XPLODE#\images\head.png'
                />
                <footer
                    back='#003399'
                    fore='#FFFFFF'
                    image='#XPLODE#\images\foot.png'
                />
                <progress
                    border='#000000'
                    back='#FFFFFF'
                    fore='#008800'
                    fore2='#00AA00'
                />    
                <main
                    back='#6699FF'
                    fore='#FFFFFF'
                    current='#FFFF00'
                    description='#FFFFFF'
                    image='#XPLODE#\images\install.png'
                    overlay='#FFFFFF22'
                />
            </colours>
        </display>
        <environment>
            <!-- strings for the header/footer text -->
            <display.title> Installing Applications </display.title>
            <display.complete> Complete </display.complete>
        </environment>
    </config>
        <item display='Adobe Reader 8.1'>
            <execute display='Adobe Reader 8.1'>
                <program>%systemdrive%\install\AdobeReader\SetupS.exe</program>
                <hide>true</hide>
            </execute>
        </item>
        <item display='Framework .net 1.1'>
            <execute display='Framework .net 1.1'>
                <program>%systemdrive%\install\dotnet11sp1.exe</program>
                <arguments>/S /v/qn</arguments>
                <hide>true</hide>
            </execute>
        </item>
        <item display='Framework .net 2.0'>
            <execute display='Framework .net 2.0'>
                <program>%systemdrive%\install\framework2.0.exe</program>
                <arguments>/S /v/qn</arguments>
                <hide>true</hide>
            </execute>
        </item>
        <item display='Flash Player 9.0.115'>
            <execute display='Flash Player 9.0.115'>
                <program>%systemdrive%\install\SilentInstall_flash_player.exe</program>
                <arguments>/S /v/qn</arguments>
                <hide>true</hide>
            </execute>
        </item>
        <item display='Java JRE 6'>
            <execute display='Java JRE 6'>
                <program>%systemdrive%\install\jre6u4.exe</program>
                <hide>true</hide>
            </execute>
        </item>
        <item display='Microsoft Office Standard 2003'>
            <execute display='Microsoft Office Standard 2003'>
                <program>%systemdrive%\install\Office_2003\UK\Setupstd.exe</program>
                <arguments>/settings "%systemdrive%\install\Office_2003\AppStp\Setupstd.ini"</arguments>
                <hide>true</hide>
            </execute>
        </item>
        <item display='Copy user to all users'>
            <execute display='Copy user to all users'>
                <program>%systemdrive%\install\copy_admin.cmd</program>
                <hide>true</hide>
            </execute>
        </item>
        <item display='Cleanup files'>
            <execute display='Cleanup files'>
                <program>%systemdrive%\install\cleanup.cmd</program>
                <hide>true</hide>
            </execute>
        </item>
         <item display='Shutdown and Reboot'>
            <execute display='Initiating Shutdown and Reboot'>
                <program>shutdown</program>
                <arguments>-r -t 5  -c "Finishing Windows Installation and Rebooting"</arguments>
                <hide>true</hide>
            </execute>
        </item>
</XPlode4>


Can someone tell me were I went wrong?