Jump to content

I have some Problems With Office2003 Advance Ins'..


Recommended Posts

I have successfully all the guide of office2003 Advance installation:

http://unattended.msfn.org/unattended.xp/v...6306273c2ec201/

And here is my problems:

1. When I want to change " TRANSFORMS=C:\XPCD\$\$1\install\Applications\Office2003\Unattended.MST /qb- " To "TRANSFORMS=Unattended.MST /qb- " I can't change it, it's not allowing any change like write and delete, but I moved the *.MST to the Office2003 folder, so why is it doing it ?

2. My batch file of the guide ( upper link) is in my Office2003 folder, I do silent installation with RunOnceEX and I wrote the command to run the Setup.bat , is it going to be install successfully?

And please do not move me to the guide, cause I remember it in my head :D

Thank you:)

Link to comment
Share on other sites


Can you post your runonceex entries and your batch file contents please?

cmdow @ /HID
@echo off

FOR %%i IN (D E F G H I J K L M N O P Q R S T U V W X Y Z) DO IF EXIST %%i:\CD.txt SET CDROM=%%i:

SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx

REG ADD %KEY% /V TITLE /D "Installing Applications" /f


REG ADD %KEY%\001 /VE /D "Office2003_Pro_Hebrew+SP2" /f
REG ADD %KEY%\001 /V 1 /D "%CDROM%\install\Applications\Office\Setup.bat" /f

REG ADD %KEY%\001 /VE /D "Java" /f
REG ADD %KEY%\001 /V 1 /D "%CDROM%\install\Applications\Java\Setup.msi" /f
REG A
DD %KEY%\001 /V 2 /D "%CDROM%\install\Applications\Java\Restart.bat" /f

REG ADD %KEY%\015 /VE /D "Net_FrameWork_2.0" /f
REG ADD %KEY%\015 /V 1 /D "%CDROM%\install\Applications\Net_FrameWork 2.0\Restart.bat" /f

REG ADD %KEY%\025 /VE /D "Cleaning_Up_and_Rebooting" /f
REG ADD %KEY%\025 /V 1 /D "%CDROM%\install\Applications\cleanup.cmd"/f

EXIT

Link to comment
Share on other sites

Can you post your setup.bat for O2k3 setup?

And your Java installation entry overwrites your Office 2003 one here:

REG ADD %KEY%\~001~ /VE /D "Office2003_Pro_Hebrew+SP2" /f
REG ADD %KEY%\~001~ /V 1 /D "%CDROM%\install\Applications\Office\Setup.bat" /f

REG ADD %KEY%\~001~ /VE /D "Java" /f
REG ADD %KEY%\~001~ /V 1 /D "%CDROM%\install\Applications\Java\Setup.msi" /f

See where I've put ~001~ around the 001s?

So that's probably why.

(Why can't you make some of the text in a code bold?)

Edited by T D
Link to comment
Share on other sites

Can you post your setup.bat for O2k3 setup?

And your Java installation entry overwrites your Office 2003 one here:

REG ADD %KEY%\~001~ /VE /D "Office2003_Pro_Hebrew+SP2" /f
REG ADD %KEY%\~001~ /V 1 /D "%CDROM%\install\Applications\Office\Setup.bat" /f

REG ADD %KEY%\~001~ /VE /D "Java" /f
REG ADD %KEY%\~001~ /V 1 /D "%CDROM%\install\Applications\Java\Setup.msi" /f

See where I've put ~001~ around the 001s?

So that's probably why.

(Why can't you make some of the text in a code bold?)

Here :

Office

ECHO.
ECHO Installing Office 2003 Professional
ECHO Please wait...
start /wait %systemdrive%\Install\Applications\Office\SETUP.EXE TRANSFORMS=Unattended.MST /qb-

Java

setup.msi /s /v"/qn REBOOT=Suppress"

Edited by doc14
Link to comment
Share on other sites

MSIs dont' work with /s /v/qn, only the installshield sfx archives and bootstraps do. If the switch is directly on the msi, you don't need /S /V/blahblahblah. All you need is /qn /norestart

Your java in the batch itself points directly to the msi without the switches. You can use switches in runonceex batch files. I personally use an inf but there you have it.

Try only slipstreaming sp2 into your office and making the batch install the msp files with /qn /norestart. I get problems with MU and my installation when slipstreaming patches. Or try reuilding your office source.

And have you changed

REG ADD %KEY%\001 /VE /D "Java" /f
REG ADD %KEY%\001 /V 1 /D "%CDROM%\install\Applications\Java\Setup.msi" /f

To

REG ADD %KEY%\002 /VE /D "Java" /f
REG ADD %KEY%\002 /V 1 /D "%CDROM%\install\Applications\Java\Setup.msi" /f

yet?

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...