Jump to content

Office 2003


nepaltis

Recommended Posts

Hello this is my first topic and I want to thankyou all for the great forum.

I try to do a Office 2003 Unattended in a Advanced method , I do all steps but I can´t chage the next step lis above.What I do wrong?

TRANSFORMS=C:\XPCD\$OEM$\$1\install\Applications\Office2003\Unattended.MST /qb-

changed to...

TRANSFORMS=Unattended.MST /qb-

Thanks

Link to comment
Share on other sites


Thanks for the help.

This is to put on a dvd to make a unttended windows instalation.

In the tutorial says to change this lines but I can't.

The tuturial says:

"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- "

Link to comment
Share on other sites

Yeah I thought so...

So what they say is:

"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

You do not need to change it in the Custom Installation Wizard but only in your batch (or RunOnceEx.cmd) file that you will run and it will look like:

Office.bat (for example):

start /wait %systemdrive%\install\office\SETUP.EXE TRANSFORMS=%systemdrive%\install\office\SetupFile.MST /qb

(must be on the same line)

or from RunOnceEx.cmd:

REG ADD %KEY%\010 /VE /D "Office 2003" /f
REG ADD %KEY%\010 /V 1 /D "%systemdrive%\install\office\SETUP.EXE TRANSFORMS=%systemdrive%\install\office\SetupFile.MST /qb" /f

Link to comment
Share on other sites

I try as you said and it works in .cmd file but in RunOnceEx didn't work. I try 2 ways:

RunOnceEx

REG ADD %KEY%\001 /VE /D "Office 2003 Professional" /f

REG ADD %KEY%\001 /V 1 /D "%CDROM%\software\Office2003\setuppro.exe TRANSFORMS=Unattended.MST /qb-" /f

and

REG ADD %KEY%\001 /VE /D "Office 2003 Professional" /f

REG ADD %KEY%\001 /V 1 /D "%CDROM%\software\Office2003\setuppro.exe TRANSFORMS="%CDROM%\software\Office2003\Unattended.MST /qb-" /f

and Acrobat don't work to

REG ADD %KEY%\000 /VE /D "Acrobat Reader 6.0" /f

REG ADD %KEY%\000 /V 1 /D "%CDROM%\software\AdobeReader6\AdbeRdr60_enu_full.exe -p"-s /v\"/qn\""" /f

other applications work just fine like media player 10, Sun Java, Nero 6.6.0.1.

What I made wrong.

Link to comment
Share on other sites

in my batch file, I use the Adobe reader switch like this

start /wait %systemdrive%\install\Apps\AdobeReader6\AdbeRdr60_enu_full.exe -p"-s /v\"/qn\""

you will need to modify any path or file name to fit your filename

Link to comment
Share on other sites

I try again and works with:

REG ADD %KEY%\001 /VE /D "Office 2003 Professional" /f

REG ADD %KEY%\001 /V 1 /D "%CDROM%\software\Office2003\setuppro.exe TRANSFORMS=Unattended.MST /qb-" /f

But not work with acrobat , any ideas?

In batch file Acorbat works in RunOnceEx.cmd don't work.

Link to comment
Share on other sites

REG ADD %KEY%\001 /VE /D "Office 2003 Professional" /f

REG ADD %KEY%\001 /V 1 /D "%CDROM%\software\Office2003\setuppro.exe TRANSFORMS="%CDROM%\software\Office2003\Unattended.MST /qb-" /f

In this case you are missing with back slash with nested inverted commas...

It should be like this:

REG ADD %KEY%\001 /VE /D "Office 2003 Professional" /f

REG ADD %KEY%\001 /V 1 /D "%CDROM%\software\Office2003\setuppro.exe TRANSFORMS=\"%CDROM%\software\Office2003\Unattended.MST /qb-\"" /f

and make sure that you are not putting "/V 1" with every application.

Link to comment
Share on other sites

Sorry if I don't make understading.

I just don´t have any problem with the instalation of office 2003, I made with this entry:

REG ADD %KEY%\001 /VE /D "Office 2003 Professional" /f

REG ADD %KEY%\001 /V 1 /D "%CDROM%\software\Office2003\setuppro.exe TRANSFORMS=Unattended.MST /qb-" /f

and it works in office 2003.

My problem now is with acrobat I can't make it work with this entry in:

[RunOnceEx.cmd]

REG ADD %KEY%\000 /VE /D "Acrobat Reader 6.0" /f

REG ADD %KEY%\000 /V 1 /D "%CDROM%\software\AdobeReader6\AdbeRdr60_enu_full.exe -p"-s /v\"/qn\"" /f

Link to comment
Share on other sites

REG ADD %KEY%\000 /VE /D "Acrobat Reader 6.0" /f

REG ADD %KEY%\000 /V 1 /D "%CDROM%\software\AdobeReader6\AdbeRdr60_enu_full.exe -p"-s /v\"/qn\"" /f

you are missing with back slash here too...

make it like this:

REG ADD %KEY%\000 /VE /D "Acrobat Reader 6.0" /f

REG ADD %KEY%\000 /V 1 /D "%CDROM%\software\AdobeReader6\AdbeRdr60_enu_full.exe -p\"-s /v\"/qn\"\"" /f

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...