MSFN Forum: HOWTO: Silently install any Office 2003 Edition - MSFN Forum

Jump to content



Unattended CD/DVD Guide Homepage · MSFN Forum Rules

Welcome to the Applications Installs forum. Make sure you read the forum rules before you start posting.

Links/Requests to warez and/or any illegal material (porn, cracks, serials, etc..) will not be tolerated. Discussion of circumventing WGA/activation/timebombs/keygens or any other illegal activity will also not be tolerated.

We try our best to keep this forum clean of illegal content. If you see any illegal activity use the "report" button you find in every post to report the specific post to the moderators. If you ignore any of the rules you will be banned without notice.

Read Forum Rules
Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

HOWTO: Silently install any Office 2003 Edition Rate Topic: -----

#1 User is offline   l33t 

  • Newbie
  • Group: Members
  • Posts: 14
  • Joined: 13-August 04

  Posted 13 August 2004 - 01:41 AM

Hi @All,

as we now from the Office Resource Kit Documentation, only the Enterprise Edition acquired through a non-retail channel (such as MSDN or Select) can be installed silently or without a transform. I'll show you that this is not quite true, but rather a feature of Office... :rolleyes:

If you do not want to violate your EULA or modify the installation source of Office, do not read past this line. The following text illustrates the process the Office Setup takes to distinguish the Office Editions and prevent the silent/CIW driven installation.

-----------------------------------------------------------------------------------------------



Microsoft distinguishes the office edition by an SKU XML file and a different main MSI file. Upon entry of the product key the installation determines the appropriate edition and available features (such as transforms and CIW) from the sku xml file.

My first idea was to simply modify the sku xml file, but there is a file signature check in place to prevent the modification. So this was obviously not an option... :)

My next step was to run the MSI with full logging (msiexec.exe /lv* <<logfile>>) to see how the checks were made and indeed there are a couple of checks made via custom actions in the MSI:

- SkuredQuiet
- SkuredCIW

The first determines if a silent install is in progress and if it is allowed in the edition. The second determines if an install using a transform via the custom installation wizard is allowed/currently running.

So: To make a silent/CIW driven installation work, simply remove the above two custom actions from the InstallExecuteSequence using your favorite MSI editor from the Office MSI file, create the CIW transform and install as the CIW tells you once you finished. (Tutorial available on unattended.msfn.org)

Final words: I am sure using this approach to install Office violates your EULA. I don't know if there are any side-effects to using this approach, however it works for me. Office and McAfee VirusScan were my troubles and this solution worked to automate the Office install.

Have fun!
l33t

P.S.: For those who do not own an MSI Editor: There is a free one part of the Microsoft Windows Installer SDK, which is freely available for download from the platform sdk update site. It includes an orca.msi, which installs a simple MSI editor. I used the editor to modify my office MSI file.


#2 User is offline   nodiaque 

  • Code Master
  • Pip
  • Group: Members
  • Posts: 98
  • Joined: 21-July 04

Posted 13 August 2004 - 12:15 PM

hmmmm.... easier way:

http://unattended.ms.../office2003.htm

#3 User is offline   RichTJ99 

  • Member
  • PipPip
  • Group: Members
  • Posts: 135
  • Joined: 25-July 04

Posted 13 August 2004 - 12:22 PM

Keep reading. I have the Office 2003 edition that came with the MS action pack. I cant do the unattended install with service packs slipstreamed

This will help me out once I figure out how to edit the msi files.

#4 User is offline   l33t 

  • Newbie
  • Group: Members
  • Posts: 14
  • Joined: 13-August 04

Posted 13 August 2004 - 01:19 PM

@nodiaque

The tutorial presented there only works for the Enterprise or VL Editions of Office. The above tutorial should work on any edition. I've tested it on the standard and student editions.

@RichTJ99

Short how-to about editing MSI files for those, who don't own InstallShield or alike...

1. Go to Microsoft Platform SDK Update
2. Click on the link "Windows Installer SDK" on the left.
3. Click on the link "Install this SDK" on the right.
4. Follow installation instructions carefully.

After installation is complete you should have a folder Microsoft SDK in your %ProgramFiles% directory. Navigate to the Bin folder in it.

You should see a file Orca.msi inside it. Install Orca. This will add a new shortcut in your start menu to Orca, a simple msi editor. After installation you can process the tutorial above.

Hope this helps you. Surely helped me.

Regards,
l33t

#5 User is offline   RichTJ99 

  • Member
  • PipPip
  • Group: Members
  • Posts: 135
  • Joined: 25-July 04

Posted 13 August 2004 - 08:13 PM

L33T,

I got Orca running & was able to navigate to the PRO11N.MSI. I was also able to remove the:

- SkuredQuiet
- SkuredCIW

entries from the "InstallExecuteSequence" section. These items do pop up in other spots as well. "

SkuredCIW was in the CustomAction section also.
SkuredQuiet was in the AdminExecuteSequence and in the CustomAction section (as well as the installexecutesequence).

I only removed the entries from the "Installexecutesequence" (since that is what you said).

Any ideas? It doesnt work.

#6 User is offline   RichTJ99 

  • Member
  • PipPip
  • Group: Members
  • Posts: 135
  • Joined: 25-July 04

Posted 13 August 2004 - 08:15 PM

I also tried removing all instances of:

- SkuredQuiet
- SkuredCIW

In the whole msi file, but that didnt work either.

#7 User is offline   l33t 

  • Newbie
  • Group: Members
  • Posts: 14
  • Joined: 13-August 04

Posted 14 August 2004 - 01:03 AM

@RichTJ99

You need to save and exit Orca for testing. It keeps a lock on the MSI file and all changes are not really stored until you exit it.

If it still doesn't work for you try the following:

msiexec.exe /lv* C:\officesetup.log /i <<name+pathofofficeMSI>> TRANSFORMS=<<name+pathoftransform>> /qb-

Let the install run. At some point it will fail as you described above. Now open C:\officesetup.log and scroll down to the end of the log file. You should see the detailed error message and the last action, which was executed. This last action most likely caused the error.

Regards,
l33t

Edit: How did you execute the installer? I am executing the MSI directly.

#8 User is offline   prathapml 

  • Follow the rules please :-)
  • Group: Patrons
  • Posts: 6,791
  • Joined: 14-November 03
  • OS:Windows 7 x64
  • Country: Country Flag

Posted 14 August 2004 - 04:37 AM

@l33t-
Cool info, thanx for sharing with us..
Useful for home users who won't have access to corp. editions (atleast, not legally :lol:). I don't suppose this method is warez since it falls in the same category as hacking dxsetup.exe to allow silent install.

#9 User is offline   RichTJ99 

  • Member
  • PipPip
  • Group: Members
  • Posts: 135
  • Joined: 25-July 04

Posted 14 August 2004 - 11:36 PM

msiexec.exe /lv* C:\officesetup.log /i <<name+pathofofficeMSI>> TRANSFORMS=<<name+pathoftransform>> /qb-


Leet - say that my office directory is C:\office2003, the MSI is PRO11N.MSI the transform (thats the MST right?) is unattended.mst & is sitting in the main c:\office2003 directory

What would be the path?

#10 User is offline   l33t 

  • Newbie
  • Group: Members
  • Posts: 14
  • Joined: 13-August 04

Posted 15 August 2004 - 12:24 AM

You should be able to run it this way:

msiexec.exe /lv* C:\officesetup.log /i C:\office2003\pro11n.msi TRANSFORMS=C:\office2003\unattended.mst /qb-

Hope this works for you.

l33t

#11 User is offline   RichTJ99 

  • Member
  • PipPip
  • Group: Members
  • Posts: 135
  • Joined: 25-July 04

Posted 15 August 2004 - 06:13 PM

Well, that worked I think, the install didnt, but it made a 600K sized error file. Can you PM me your email address & I will pass it along to you? Or let me know what I should be looking for.

Thanks,
Rich

#12 User is offline   edbro 

  • Member
  • PipPip
  • Group: Members
  • Posts: 104
  • Joined: 15-June 04

Posted 16 August 2004 - 11:09 AM

Is there any way to trick Office into doing an admin install so that I can slipstream? My version is also from the Action Pack and it does not support it.

By the way, I found an alternate source for Orca.msi without installing the SDK.
Orca is on this page

#13 User is offline   Tanshu 

  • Group: Members
  • Posts: 2
  • Joined: 15-January 04

Posted 26 August 2004 - 10:59 AM

Thanx a lot edbro, I was looking for orca. Your good work has saved me a loooooooot of useless downloading. :)

Share this topic:


Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users



All trademarks mentioned on this page are the property of their respective owners
Copyright © 2001 - 2011 msfn.org
Privacy Policy