Hi,
I am creating an unattended install that includes a batch file. We are just starting to use Office 2003 and I am trying to install it using this batch file. Here is the command that I am using:
REM Microsoft Office 2003
echo.
echo Installing MS Office 2003 ...
j:\source\msoffice2003\OFFICE11\SETUPSTD.EXE TRANSFORMS=j:\source\msoffice2003\OFFICE11\fatclient5_13.MST /qb
:EXITOFFICE
I am new at scripting and this craps out when it's running saying that there is a problem with my tranform file. Does this command look correct?
Any suggestions?
Here is the entire batch file that I'm running:
l@echo off
echo .
echo Finishing Windows Installation Process. Please Wait...
rem Modifying default user settings
c:\temp\ntuser.exe /s
rem setting Desktop version info
c:\temp\version.exe /s
echo .
echo Installing Applications From Server ENGHD05. Please Wait...
net use j: \\ENGHD05\deploy /user:ARCHSTONESMITH.COM\svcconfig archst0ne /PERSISTENT:NO
REM Microsoft Office 2003
echo.
echo Installing MS Office 2003 ...
j:\source\msoffice2003\OFFICE11\SETUPSTD.EXE TRANSFORMS=j:\source\msoffice2003\OFFICE11\fatclient5_13.MST /qb
:EXITOFFICE
REM Adobe Acrobat Reader 6
echo.
echo Installing Acrobat Reader 6 .......
j:\source\AcrobatReader6\Adobe_Reader_6.0.1.msi /qb
REM Winzip 6.1
echo.
echo Installing Winzip 6.1 .......
md "c:\program files\Winzip"
copy "j:\source\WinZip\Winzip_6.1\*.*" "c:\program files\winzip"
c:\progra~1\winzip\setup.exe /cleaninstall
REM Winzip 9.0
echo.
echo Installing Acrobat Reader 9 .....
j:\source\WinZip\Winzip_9.0\winzip90.exe /qb
REM Citrix Program Neighborhood Agent
echo.
echo Installing Citrix ICA Client ...
j:\source\ica\ica32a.msi /qn
REM Regini to modify Citrix Registry Key
REM echo.
REM echo Running Regini.exe to modify Citrix Registry Key Permissions ...
REM j:\source\regini\regini.exe citrix.txt
REM McAfee VirusScan Enterprise 7.0 client
REM echo.
REM echo Installing McAfee VirusScan client ...
REM j:\source\mcafee\vse700.msi /qn
REM McAfee VirusScan Enterprise 7.0 client
echo.
echo Installing McAfee VirusScan client ...
j:\source\newmcafee\setup.exe
REM McAfee EPO Agent 3.1
echo.
echo Installing McAfee EPO Agent 3.1 ...
j:\source\epo\framepkg.exe /install=agent /s
REM SMS Client Install
echo.
echo Installing SMS Client ...
msiexec /i J:\source\SMSClient\client.msi SMSSITECODE=COM /q
REM MS HotFix KB823182
echo.
echo Installing MS HotFix 823182 ...
j:\source\hotfixes\KB823182-x86-ENU.exe /q /z
REM MS HotFix KB824105
echo.
echo Installing MS HotFix 824105 ...
j:\source\hotfixes\KB824105-x86-ENU.exe /q /z
REM MS HotFix KB824141
echo.
echo Installing MS HotFix 824141 ...
j:\source\hotfixes\KB824141-x86-ENU.exe /q /z
REM MS HotFix KB825119
echo.
echo Installing MS HotFix 825119 ...
j:\source\hotfixes\KB825119-x86-ENU.exe /q /z
REM MS HotFix KB826939
echo.
echo Installing MS HotFix KB826939 ...
j:\source\hotfixes\KB826939-x86-ENU.exe /q /z
REM MS HotFix KB828035
echo.
echo Installing MS HotFix KB828035 ...
j:\source\hotfixes\KB828035-x86-ENU.exe /q /z
REM MS HotFix Q327575
echo.
echo Installing MS HotFix KB327575 ...
j:\source\hotfixes\Q327575_WXP_SP2_x86_ENU.exe /q /z
REM MS HotFix Q331953
echo.
echo Installing MS HotFix Q331953 ...
j:\source\hotfixes\Q331953_WXP_SP2_x86_ENU.exe /q /z
REM MS HotFix Q824145
echo.
echo Installing MS HotFix Q824145 ...
j:\source\hotfixes\Q824145.exe /q /z
REM MS HotFix Q828750
echo.
echo Installing MS HotFix 828750 ...
j:\source\hotfixes\Q828750-IE6SP1.exe /q /z
REM MS HotFix Q819696
echo.
echo Installing MS HotFix 819696 ...
j:\source\hotfixes\Q819696_WXP_SP2_x86_ENU.exe /q /z
REM MS HotFix Q832894
echo.
echo Installing MS HotFix 832894 ...
j:\source\hotfixes\Q832894.exe /q /z
echo.
echo Copying Citrix appsrv.ini to C:\Program Files\PNAgent
copy "j:\citrix\appsrv.ini" "C:\program files\citrix\pnagent\appsrv.ini"
echo.
echo Deleting Accessories Program Group and Remote Assistance Shortcut
del "c:\documents and settings\default user\start menu\programs\remote assistance.lnk"
move /Y "c:\documents and settings\default user\start menu\programs\accessories" "C:\documents and settings\"
echo.
echo Copying BGInfo application to Program Files Directory
mkdir "c:\program files\bginfo"
copy "j:\source\bginfo\*.*" "c:\program files\bginfo"
move "c:\program files\bginfo\bginfo.lnk" "C:\documents and settings\all users\start menu\programs\startup"
echo.
echo Making Printer Drivers directory on C: drive
mkdir "c:\Printdrivers"
copy "j:\source\Printdrivers\*.*" "c:\Printdrivers"
echo.
echo Copying Version Text File to System32 Folder
copy "J:\source\Textfiles\#ASNCommunity_1.0.5_02242004.txt" "c:\Windows\system32"
echo.
echo Making registry changes for Power cfg and remote assistance
regedit /s c:\temp\remote.reg
regedit /s c:\temp\powercfg.reg
echo.
echo Install .NET Framework 1.1
copy "j:\source\911\dotnetfx.exe" "c:\temp"
c:\temp\dotnetfx.exe /q /c:"install.exe /q"
REM echo
REM echo Install Help Desk 911 Service
REM j:\source\911\911servicesetup.msi /q
rem Converting to NTFS on reboot
rem c:\windows\system32\convert.exe c: /fs:ntfs < c:\temp\convert.txt
REM Sysprep
cls
call c:\sysprep\sysprep.exe -forceshutdown -mini -pnp -quiet -reseal
Page 1 of 1
Problem with .mst Problem with .mst
#2
Posted 01 June 2004 - 05:46 PM
Did you create an admin install point for Office 2003? If not, then you will need to.
http://unattended.ms...xp_advanced.htm
http://unattended.ms...xp_advanced.htm
#3
Posted 02 June 2004 - 03:19 PM
I figured it out...I was pointing to the SETUPSTD.EXE instead of the pro11.msi that I made the transform file from.
thanks for the reply.
thanks for the reply.
Share this topic:
Page 1 of 1



Help
Back to top









