-Marc
This command will perform a silent installation of Office 2003 using the Unattended.MST file you created in the Custom Installation Wizard to set your customized options. But we don't want to use the exact command shown above as this wouldn't exist when installing from a CD, so we will need to change this when we add it to a batch file
TRANSFORMS=C:\XPCD\$OEM$\$1\install\Applications\Office2003\Unattended.MST /qb-
changed to...
TRANSFORMS=Unattended.MST /qb-
» Section 2 - The Office 2003 Batch Command
As you read at the end of the last section, we needed to change the path in the TRANSFORM syntax in order for it to work. Below are the full batch commands you can use, so add these lines to your batch file:
ECHO.
ECHO Installing Office 2003 Professional
ECHO Please wait...
start /wait %systemdrive%\install\Applications\Office2003\setup.exe TRANSFORMS=Unattended.MST /qb-
That's it!
.....Or could I just add this to the Autorun.inf?
[autorun]
OPEN=setup.exe TRANSFORMS=Unattended.MST /qb-
This post has been edited by TruBlu01: 12 December 2005 - 02:54 PM



Help
Back to top








