Hi,
I am trying to add an office 2003 unattended install. I went through the steps on the unattended website.
I copied the cab files & other files to:
C:\xpcd\$OEM$\$1\Install\office2003
I also had the Unattended.MST file made & is sitting in the same folder.
My runonceex.cmd file reads (I dumped most of the other stuff out):
cmdow @ /HID
@echo off
SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx
REG ADD %KEY% /V TITLE /D "Installing Slipstreamed Applications" /f
REG ADD %KEY%\001 /VE /D "Preparing Installation..." /f
REG ADD %KEY%\001 /V 1 /D "%systemdrive%\Install\prepare.cmd" /f
REG ADD %KEY%\050 /VE /D "Dreamweaver MX 2004" /f
REG ADD %KEY%\050 /V 1 /D "%systemdrive%\Install\Dreamweaver\setup.exe -s" /f
REG ADD %KEY%\050 /V 2 /D "taskkill.exe /F /IM IEXPLORE.EXE" /f
REG ADD %KEY%\055 /VE /D "Office 2003 Professional" /f
REG ADD %KEY%\055 /V 1 /D "%systemdrive%\Install\Office2003\setup.exe TRANSFORMS=Unattended.MST /qb-"
REG ADD %KEY%\060 /VE /D "Cleaning Up and Rebooting..." /f
REG ADD %KEY%\060 /V 1 /D "%systemdrive%\Install\cleanup.cmd" /f
EXIT
Office doesnt actually install. Any ideas why?
I had originally tried it with the /f command added:
REG ADD %KEY%\055 /VE /D "Office 2003 Professional" /f
REG ADD %KEY%\055 /V 1 /D "%systemdrive%\Install\Office2003\setup.exe TRANSFORMS=Unattended.MST /qb-" /f
But it doesnt work either way.
Am I doing something wrong? Should I set the runonceex.cmd to run a office.cmd file that has this command:
ECHO.
ECHO Installing Office 2003 Professional with Frontpage
ECHO Please wait...
start /wait %systemdrive%\install\Applications\Office2003\setup.exe TRANSFORMS=Unattended.MST /qb-
Taken from the
http://unattended.ms...03_advanced.htm page
Thanks,
Rich