AaronXP - I'm a noob when it come to all this unattend stuff but I'm still trying hard to understand. I'm trying to make an unattended cd for myself and being a noob there seems to be so many things to consider that my head starts spinning

I have a question in regards to the installation of MDAC 2.8 and the corresponding security update. So far I have created the hotfixes.cmd as stated on the "Installing hotfixes not supported by svcpack" page and if I understand it correctly I need to install MDAC_TYP.EXE before setup processes the hotfixes.cmd file (since I take it the app needs to be installed before you can actually update it). This is what my hotfixes.cmd looks like so far:
CLS
@echo off
ECHO.
ECHO Installing Q817778 Advanced Networking Pack for Windows XP
start /wait %systemdrive%\install\hotfixes\Q817778.exe /Q:A /R:N
ECHO.
ECHO Installing Q817787 for Windows Media Player 8
start /wait %systemdrive%\install\hotfixes\Q817787.exe /Q:A /R:N
ECHO.
ECHO Installing Q832483 Security Update for Microsoft Data Access Components
start /wait %systemdrive%\install\hotfixes\Q832483.exe /T:%systemdrive%\install\tmp /C:"%systemdrive%\install\tmp\dahotfix.exe /q /n" /Q
ECHO.
ECHO Restarting the PC in 30 seconds...
shutdown.exe -r -f -t 30 -c "Windows XP will now restart in 30 seconds"
EXIT
If I use the method you described to install MDAC_TYP.EXE this would make setup process this file before hotfixes.cmd right? If so, could you plz explain a little more detailed how to do this?
If I understand correctly I am supposed to copy MDAC_TYP.EXE to the I386\updates dir? Then I make mdac.cmd and put it in the same dir & add mdac.cmd under [SetupHotfixesToRun] in svcpack.inf? This next part is what I have a hard time understanding - what syntax do I use in mdac.cmd? Can I just copy what you posted in your mdac.cmd file or is that syntax unique to your specific installation cd?