edogcooter Posted June 1, 2004 Posted June 1, 2004 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 2003echo.echo Installing MS Office 2003 ...j:\source\msoffice2003\OFFICE11\SETUPSTD.EXE TRANSFORMS=j:\source\msoffice2003\OFFICE11\fatclient5_13.MST /qb:EXITOFFICEI 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 offecho .echo Finishing Windows Installation Process. Please Wait...rem Modifying default user settingsc:\temp\ntuser.exe /srem setting Desktop version infoc:\temp\version.exe /secho .echo Installing Applications From Server ENGHD05. Please Wait...net use j: \\ENGHD05\deploy /user:ARCHSTONESMITH.COM\svcconfig archst0ne /PERSISTENT:NOREM Microsoft Office 2003echo.echo Installing MS Office 2003 ...j:\source\msoffice2003\OFFICE11\SETUPSTD.EXE TRANSFORMS=j:\source\msoffice2003\OFFICE11\fatclient5_13.MST /qb:EXITOFFICEREM Adobe Acrobat Reader 6echo.echo Installing Acrobat Reader 6 .......j:\source\AcrobatReader6\Adobe_Reader_6.0.1.msi /qbREM Winzip 6.1echo.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 /cleaninstallREM Winzip 9.0echo.echo Installing Acrobat Reader 9 .....j:\source\WinZip\Winzip_9.0\winzip90.exe /qbREM Citrix Program Neighborhood Agentecho.echo Installing Citrix ICA Client ...j:\source\ica\ica32a.msi /qnREM Regini to modify Citrix Registry KeyREM echo.REM echo Running Regini.exe to modify Citrix Registry Key Permissions ...REM j:\source\regini\regini.exe citrix.txtREM McAfee VirusScan Enterprise 7.0 clientREM echo.REM echo Installing McAfee VirusScan client ...REM j:\source\mcafee\vse700.msi /qnREM McAfee VirusScan Enterprise 7.0 clientecho.echo Installing McAfee VirusScan client ...j:\source\newmcafee\setup.exeREM McAfee EPO Agent 3.1echo.echo Installing McAfee EPO Agent 3.1 ...j:\source\epo\framepkg.exe /install=agent /sREM SMS Client Installecho.echo Installing SMS Client ...msiexec /i J:\source\SMSClient\client.msi SMSSITECODE=COM /qREM MS HotFix KB823182echo.echo Installing MS HotFix 823182 ...j:\source\hotfixes\KB823182-x86-ENU.exe /q /zREM MS HotFix KB824105echo.echo Installing MS HotFix 824105 ...j:\source\hotfixes\KB824105-x86-ENU.exe /q /zREM MS HotFix KB824141echo.echo Installing MS HotFix 824141 ...j:\source\hotfixes\KB824141-x86-ENU.exe /q /zREM MS HotFix KB825119echo.echo Installing MS HotFix 825119 ...j:\source\hotfixes\KB825119-x86-ENU.exe /q /zREM MS HotFix KB826939echo.echo Installing MS HotFix KB826939 ...j:\source\hotfixes\KB826939-x86-ENU.exe /q /zREM MS HotFix KB828035echo.echo Installing MS HotFix KB828035 ...j:\source\hotfixes\KB828035-x86-ENU.exe /q /zREM MS HotFix Q327575echo.echo Installing MS HotFix KB327575 ...j:\source\hotfixes\Q327575_WXP_SP2_x86_ENU.exe /q /zREM MS HotFix Q331953echo.echo Installing MS HotFix Q331953 ...j:\source\hotfixes\Q331953_WXP_SP2_x86_ENU.exe /q /zREM MS HotFix Q824145echo.echo Installing MS HotFix Q824145 ...j:\source\hotfixes\Q824145.exe /q /zREM MS HotFix Q828750echo.echo Installing MS HotFix 828750 ...j:\source\hotfixes\Q828750-IE6SP1.exe /q /zREM MS HotFix Q819696echo.echo Installing MS HotFix 819696 ...j:\source\hotfixes\Q819696_WXP_SP2_x86_ENU.exe /q /zREM MS HotFix Q832894echo.echo Installing MS HotFix 832894 ...j:\source\hotfixes\Q832894.exe /q /zecho.echo Copying Citrix appsrv.ini to C:\Program Files\PNAgentcopy "j:\citrix\appsrv.ini" "C:\program files\citrix\pnagent\appsrv.ini"echo.echo Deleting Accessories Program Group and Remote Assistance Shortcutdel "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 Directorymkdir "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: drivemkdir "c:\Printdrivers"copy "j:\source\Printdrivers\*.*" "c:\Printdrivers"echo.echo Copying Version Text File to System32 Foldercopy "J:\source\Textfiles\#ASNCommunity_1.0.5_02242004.txt" "c:\Windows\system32"echo.echo Making registry changes for Power cfg and remote assistanceregedit /s c:\temp\remote.regregedit /s c:\temp\powercfg.regecho.echo Install .NET Framework 1.1copy "j:\source\911\dotnetfx.exe" "c:\temp"c:\temp\dotnetfx.exe /q /c:"install.exe /q"REM echoREM echo Install Help Desk 911 ServiceREM j:\source\911\911servicesetup.msi /qrem Converting to NTFS on rebootrem c:\windows\system32\convert.exe c: /fs:ntfs < c:\temp\convert.txtREM Sysprepclscall c:\sysprep\sysprep.exe -forceshutdown -mini -pnp -quiet -reseal
homiebrah Posted June 1, 2004 Posted June 1, 2004 Did you create an admin install point for Office 2003? If not, then you will need to.http://unattended.msfn.org/xp/officexp_advanced.htm
edogcooter Posted June 2, 2004 Author Posted June 2, 2004 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.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now