Ok, Im stumped...

Ive got my cmd file running on first boot up after fresh installation.

But when it comes to installing microsoft office using my transforms file and the /qb+ switches it completely skips it with no errors...

Heres my cmd file...
CODE
CLS
@echo off
TITLE Final Installation tasks...

net use H: \\192.168.58.1\data /user:REDHILL\administrator *********

ECHO.
ECHO Copying Shortcuts
COPY "\\192.168.58.1\data\utility\support\Employee Intranet.url" "C:\Documents and Settings\All Users\Desktop\"

ECHO.
ECHO Adobe Acrobat Reader 7.0
start /wait C:\Install\"Adobe Acrobat Reader"\AdbeRdr70_enu_full.exe -p-s /v/qn

ECHO.
ECHO WinZip 9.0
start /wait C:\Install\WinZip\WINZIP32.exe /noqp /autoinstall

ECHO.
ECHO Macromedia ShockWave Player 8.0
start /wait C:\Install\"Macromedia Shockwave Player"\Shockwave_Installer_Full.exe /S

ECHO.
ECHO Microsoft .NET Framework 1.1
start C:\Install\"Microsoft .NET Framework 1.1"\dotnetfx.exe /q /c:"install.exe /q"

[b]ECHO.
ECHO Microsoft Office 2000 Professional Disc 1
start /wait \\192.168.58.1\"system files"\"Microsoft Office 2000 Professional"\Setup\Disc1\SETUP.EXE transforms="\\192.168.58.1\system files\Microsoft Office 2000 Professional\Setup\Disc1\unattended.MST" /qb-

ECHO.
ECHO Microsoft Office 2000 Professional Disc 2
start /wait \\192.168.58.1\"system files"\"Microsoft Office 2000 Professional"\Setup\Disc2\SETUP.EXE transforms="\\192.168.58.1\system files\Microsoft Office 2000 Professional\Setup\Disc2\unattended.MST" /qb-

ECHO.
ECHO Norton Antivirus Corporate Edition 7.6
start /wait C:\antivirus.cmd

ECHO.
ECHO Completing Final Installation Tasks
net user aspnet /DELETE
net use H: /DELETE

EXIT


I have tried running each from their own cmd files... doesnt work.

If I run my cmd file after my system has started up it seems to run the first disc. But not the second.

Please help!!!