MSFN Forum: how to unnatended office 2010 and make it lite? - 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
  • 6 Pages +
  • « First
  • 2
  • 3
  • 4
  • 5
  • 6
  • You cannot start a new topic
  • You cannot reply to this topic

how to unnatended office 2010 and make it lite? Rate Topic: -----

#61 User is offline   Yav 

  • Group: Members
  • Posts: 6
  • Joined: 19-October 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 18 November 2010 - 11:57 AM

Just finished testing it. Worked flawlessly. Thanks a lot again.
Now I'm playing with the options in custom.xml file to suit my needs.
You made a man happy today :)

I have another question not related to Office 2010.
I want to add to rt7lite unattended iso some other applications like Nod32, Winrar, Nero etc.
Do I have to look for every application hot to do silent install, or is there any application that can do this?
AutoIT or MarsInstaller should do ? Or these applications do something else ?


#62 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,386
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 18 November 2010 - 12:13 PM

Nice ;)
You can use this method for others applications of course.
You need to create an customized "config.txt" ; "config.bat" and download an new 7zsd.sfx , because the one I give for Office 2010 is customized for Office14.

You can find help with the links I give above!
Cheers

#63 User is offline   Yav 

  • Group: Members
  • Posts: 6
  • Joined: 19-October 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 18 November 2010 - 01:18 PM

Which link/links from the ones you gave me should I use to make 7zsd.sfx customized for my applications ?

#64 User is offline   djpatch 

  • Newbie
  • Group: Members
  • Posts: 29
  • Joined: 05-August 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 18 November 2010 - 01:19 PM

I'm becoming crazy to do install in silent mode office 14. From Hard Disc it install without anything operation, while if it come installed in automatic mode from dvd with rt7lite it give me always wrong. where do I mistake?

This is the image of my rar
Posted Image

This is my file batch

@echo off        
start /Wait Office14\SETUP.EXE /config ProPlus.WW\CONFIG.XML        
exit


this is my config.xml into office14\ProPlus.WW\config.xml

<Configuration Product="ProPlus">

     <Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />

      <Logging Type="standard" Path="%temp%" Template="Microsoft Office Professional Plus Setup(*).txt" />

     <PIDKEY Value="" />

      <USERNAME Value="" />

       <USERINITIALS Value="" />

       <COMPANYNAME Value="Company" />

       <INSTALLLOCATION Value="%programfiles%\Microsoft Office" />

       <!-- <LIS CACHEACTION="CacheOnly" /> -->

       <LIS SOURCELIST="\Office14" />

       <DistributionPoint Location="\Office14" />

      <!-- <OptionState Id="OptionID" State="absent" Children="force" /> -->

      <Setting Id="SETUP_REBOOT" Value="NEVER" />

     <Command Path="%windir%\system32\msiexec.exe" Args="/i \Office14\ProPlus.WW\ProPlusWW.msi" QuietArg="/qn" ChainPosition="after" Execute="install" />

</Configuration>

This post has been edited by djpatch: 18 November 2010 - 01:21 PM


#65 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,386
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 18 November 2010 - 03:54 PM

View PostYav, on 18 November 2010 - 01:18 PM, said:

Which link/links from the ones you gave me should I use to make 7zsd.sfx customized for my applications ?

You can download here:
http://7zsfx.info/en/

@djpatch

Read my last post here please!
It's needed to take care with the path where you extract the Office files with WinRar!
http://www.msfn.org/...te/page__st__40

*Edit:

Errors inside your "config.xml" file and batch file!

Example with correct paths:

Quote

<Configuration Product="ProPlus">

<Display Level="none" CompletionNotice="no" SuppressModal="Yes" AcceptEula="Yes" />

<Logging Type="standard" Path="%temp%" Template="Microsoft Office Professional Plus Setup(*).txt" />

<PIDKEY Value="XXXXXXXXXXXXXXXXXXXXXXXXX" />

<USERNAME Value="Full name" />

<USERINITIALS Value="Initials" />

<COMPANYNAME Value="Customer" />

<INSTALLLOCATION Value="%programfiles%\Microsoft Office" />

<!-- <LIS CACHEACTION="CacheOnly" /> -->

<LIS SOURCELIST="%systemdrive%\Office14" />

<DistributionPoint Location="%systemdrive%\Office14" />

<!-- <OptionState Id="OptionID" State="absent" Children="force" /> -->

<Setting Id="SETUP_REBOOT" Value="NEVER" />

<Command Path="%windir%\system32\msiexec.exe" Args="/i %systemdrive%\Office14\ProPlus.WW\ProPlusWW.msi" QuietArg="/q" ChainPosition="after" Execute="install" />

</Configuration>



With Winrar:
Create first a command: Office.cmd

Office.cmd

Quote

@echo off
start /Wait %systemdrive%\Office14\SETUP.EXE /config %systemdrive%\Office14\ProPlus.WW\CONFIG.XML
exit


Put this command inside your folder "C:\Office14"

Inside the folder "Office14" select all the files and right-click to create an archive with Winrar: Office14.exe
Options with Winrar:

Inside comment:

Quote

Path=%systemdrive%\Office14
SavePath
Setup=%systemdrive%\Office14\Office.cmd
Silent=1
Overwrite=1

This post has been edited by myselfidem: 19 November 2010 - 04:58 AM


#66 User is offline   djpatch 

  • Newbie
  • Group: Members
  • Posts: 29
  • Joined: 05-August 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 19 November 2010 - 05:51 AM

now also works with rt7lite.

:blushing:

last information how do I write the cmd file to make me delete the folder office14 automatically created by winrar in c: ?

This post has been edited by djpatch: 19 November 2010 - 05:54 AM


#67 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,386
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 19 November 2010 - 06:02 AM

You can use a command inside $OEM$\$$\SETUP\SCRIPTS\Clean.cmd

Create the folders $OEM$ inside: Windows\sources (inside your Windows folders location):

$OEM$\$$\SETUP\SCRIPTS\

You can use a batch file inside the folder "SCRIPTS" or create the SetupComplete.cmd.

Clean.cmd

Quote

@echo off
REM Delete unwanted folders
RMDIR /S /Q %systemdrive%\Office14
exit


You can use SetupComplete.cmd and write inside and at last the lines to delete unwanted files and folders!

Or launch at last Clean.cmd with SetupComplete.cmd

With RT Se7en Lite you can use runonce.bat

*Edit:
I will make an test and I tell you later the best way to do!

This post has been edited by myselfidem: 19 November 2010 - 06:24 AM


#68 User is offline   djpatch 

  • Newbie
  • Group: Members
  • Posts: 29
  • Joined: 05-August 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 19 November 2010 - 06:47 AM

And how do I delete the icons of programs that appear on my desktop? I want that after installation you can only see my ObjectDock
with links to office

#69 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,386
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 19 November 2010 - 10:19 AM

@djpatch

About your PM question: How to add more fonts inside Windows 7, you can find help here:

http://www.msfn.org/...-install-fonts/

http://www.msfn.org/...ts/page__st__60

http://www.msfn.org/...w-to-add-fonts/

I hope that can help you!

#70 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,386
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 19 November 2010 - 04:34 PM

View Postdjpatch, on 19 November 2010 - 06:47 AM, said:

And how do I delete the icons of programs that appear on my desktop? I want that after installation you can only see my ObjectDock
with links to office

I use this for delete a shorcut.
You can add inside Clean.cmd (example Adobe Reader 9):

Quote

@ECHO OFF
ECHO.
REM Delete unwanted shorcut
DEL "%SystemDrive%\Users\Public\Desktop\Adobe Reader 9.lnk"
ECHO.
EXIT


You need to know and write the correct .lnk file.

*Edit: to add shorcuts

http://www.msfn.org/...ortcut-problem/

This post has been edited by myselfidem: 20 November 2010 - 01:13 AM


#71 User is offline   djpatch 

  • Newbie
  • Group: Members
  • Posts: 29
  • Joined: 05-August 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 20 November 2010 - 02:34 AM

Great myselfidem.
Thank you very much for all


myselfidem I sent you a new pm

This post has been edited by djpatch: 20 November 2010 - 06:55 AM


#72 User is offline   coucou 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 825
  • Joined: 01-January 04

Posted 14 December 2010 - 11:17 AM

Hi,

I've built an unattended Office2010 silent install few month ago and tested it, it was working like a charm.

Today, although I've disabled UAC when I try installing it I get the message

Quote

Error 1907. Could not register font. Verify that you have sufficient permissions to install fonts, and that the system supports this font
Fail to install


TNX for yr help



#73 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,386
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 14 December 2010 - 01:30 PM

You can add the updates for Microsoft Office 2010 inside your installation folder, download here:

Office 2010 updates

*Edit:
First check if your full name is the same inside your Autounattend.xml for Windows 7 and inside your config.xml for Office 2010!

This post has been edited by myselfidem: 15 December 2010 - 12:49 AM


#74 User is offline   Kingskawn 

  • Kingskawn
  • PipPip
  • Group: Members
  • Posts: 134
  • Joined: 17-April 06

  Posted 21 December 2010 - 10:05 AM

I'm working with OCT and MSP and it works. I made a English standard, French and Dutch. Also I made a Standard 2010 MUI with language packs english, dutch, french. It's all working now.

But what I still need is an English 2010 Standard with dutch proofing tools like herunder you can see it isn't there;

Posted Image

As you can see there's no "Dutch Proofing Tools"
Now I know there's a folder "Proofing.en-us" with

Posted Image

In the files setup.xml you can change somethings so maybe I can add the proofing tools that way. I tried and this is my file

<?xml version="1.0" encoding="utf-8"?>
<!--_SIG=LFS5ZJTgTJ4W8VA5J/2iu6798lw6bq5x0NE8JgvPlMncLUDtPZK/zTHPYTpY9z40K3vkNlzfe0BDZZWp6f3A3HRHVXsLNkvMzQOBpgaAkSK0RTbEeGu8dhzZlJtTvcQ1hG3DLKfQ66/CtuCcpqXjSNbNrZqdpDRPIITtCd/x0JM=-->
<Setup Id="Proofing.en-us" Type="AddOn" Keyword="Proofing" Culture="en-us">
	<Option Id="AlwaysInstalled" DefaultState="Local" DisallowAbsent="yes" DisallowAdvertise="yes" Hidden="yes"/>
	<Option Id="Gimme_OnDemandData" DefaultState="Local" DisallowAbsent="yes" DisallowAdvertise="yes" Hidden="yes"/>
	<Option Id="ProductFiles" DefaultState="Local" DisallowAbsent="yes" DisallowAdvertise="no">
		<Option Id="SHAREDFiles" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no">
			<Option Id="ProofingTools" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no">
				<Option Id="ProofingTools_1033" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no">
					<Option Id="FindAllWordFormsFiles_1033" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no"/>
					<Option Id="HyphenationFiles_1033" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no"/>
					<Option Id="OCR_1033" DefaultState="Absent" DisallowAbsent="no" DisallowAdvertise="no">
						<OptionDependency Lead="DocumentImagingUtils"/>
						<OptionDependency Lead="OneNoteFiles"/>
					</Option>
					<Option Id="SpellingAndGrammarFiles_1033" DefaultState="FollowParent" DisallowAbsent="no" DisallowAdvertise="no">
						<OptionDependency Lead="OUTLOOKFiles"/>
					</Option>
					<Option Id="ThesaurusFiles_1033" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no"/>
				</Option>
				<Option Id="ProofingTools_1036" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no">
					<Option Id="FindAllWordFormsFiles_1036" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no"/>
					<Option Id="HyphenationFiles_1036" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no"/>
					<Option Id="OCR_1036" DefaultState="Absent" DisallowAbsent="no" DisallowAdvertise="no">
						<OptionDependency Lead="DocumentImagingUtils"/>
						<OptionDependency Lead="OneNoteFiles"/>
					</Option>
					<Option Id="SpellingAndGrammarFiles_1036" DefaultState="FollowParent" DisallowAbsent="no" DisallowAdvertise="no">
						<OptionDependency Lead="OUTLOOKFiles"/>
					</Option>
					<Option Id="ThesaurusFiles_1036" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no"/>
					<Option Id="TranslationFiles_1036" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no"/>
				</Option>
				<Option Id="ProofingTools_3082" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no">
					<Option Id="FindAllWordFormsFiles_3082" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no"/>
					<Option Id="HyphenationFiles_3082" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no"/>
					<Option Id="OCR_3082" DefaultState="Absent" DisallowAbsent="no" DisallowAdvertise="no">
						<OptionDependency Lead="DocumentImagingUtils"/>
						<OptionDependency Lead="OneNoteFiles"/>
					</Option>
					<Option Id="SpellingAndGrammarFiles_3082" DefaultState="FollowParent" DisallowAbsent="no" DisallowAdvertise="no">
						<OptionDependency Lead="OUTLOOKFiles"/>
					</Option>
					<Option Id="ThesaurusFiles_3082" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no"/>
					<Option Id="TranslationFiles_3082" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no"/>
				</Option>
				<Option Id="ProofingTools_1031" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no">
					<Option Id="FindAllWordFormsFiles_1031" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no"/>
					<Option Id="HyphenationFiles_1031" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no"/>
					<Option Id="OCR_1031" DefaultState="Absent" DisallowAbsent="no" DisallowAdvertise="no">
						<OptionDependency Lead="DocumentImagingUtils"/>
						<OptionDependency Lead="OneNoteFiles"/>
					</Option>
					<Option Id="SpellingAndGrammarFiles_1031" DefaultState="FollowParent" DisallowAbsent="no" DisallowAdvertise="no">
						<OptionDependency Lead="OUTLOOKFiles"/>
					</Option>
					<Option Id="ThesaurusFiles_1031" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no"/>
					<Option Id="TranslationFiles_1031" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no"/>
				</Option>
				<Option Id="ProofingTools_1043" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no">
					<Option Id="HyphenationFiles_1043" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no"/>
					<Option Id="OCR_1043" DefaultState="Absent" DisallowAbsent="no" DisallowAdvertise="no">
						<OptionDependency Lead="DocumentImagingUtils"/>
						<OptionDependency Lead="OneNoteFiles"/>
					</Option>
					<Option Id="SpellingAndGrammarFiles_1043" DefaultState="FollowParent" DisallowAbsent="no" DisallowAdvertise="no">
						<OptionDependency Lead="OUTLOOKFiles"/>
					</Option>
					<Option Id="ThesaurusFiles_1043" DefaultState="Local" DisallowAbsent="no" DisallowAdvertise="no"/>
				</Option>
			</Option>
		</Option>
	</Option>
	<PackageRef Path="Proofing.xml"/>
	<PackageRef Path="Proof.en\Proof.xml" InstalledPath="..\Proof.en\Proof.xml"/>
	<PackageRef Path="Proof.fr\Proof.xml" InstalledPath="..\Proof.fr\Proof.xml"/>
	<PackageRef Path="Proof.es\Proof.xml" InstalledPath="..\Proof.es\Proof.xml"/>
	<PackageRef Path="Proof.de\Proof.xml" InstalledPath="..\Proof.de\Proof.xml"/>
	<PackageRef Path="Proof.nl\Proof.xml" InstalledPath="..\Proof.nl\Proof.xml"/>
	<LocalCache DownloadCode="{90140000-002C-0409-0000-0000000FF1CE}" SkuComponentDirectory="Proofing.en-us">
		<File Id="Proofing.xml" MD5="B649F0B5F538CE6C08B1829B376C2424" Size="811" RelativeCachePath="Proofing.xml" RelativeSourcePath="Proofing.xml"/>
		<File Id="Proofing.msi" MD5="42826410B0EA0935901A240F7BC88BA2" Size="650240" RelativeCachePath="Proofing.msi" RelativeSourcePath="Proofing.msi"/>
		<File Id="Proof.en\Proof.xml" MD5="AE78F745D22712E98922C791AB236A79" Size="1347" RelativeCachePath="Proof.en\Proof.xml" RelativeSourcePath="Proof.en\Proof.xml"/>
		<File Id="Proof.en\Proof.msi" MD5="8DBCFB3BA5B273CBDA729175EE28C7E2" Size="656896" RelativeCachePath="Proof.en\Proof.msi" RelativeSourcePath="Proof.en\Proof.msi"/>
		<File Id="Proof.en\Proof.cab" MD5="5C8AEC0050D1E19C16361AC4491C72C3" Size="10918653" RelativeCachePath="Proof.en\Proof.cab" RelativeSourcePath="Proof.en\Proof.cab"/>
		<File Id="Proof.fr\Proof.xml" MD5="CE6C982760F5396907D21337E51A85AE" Size="1458" RelativeCachePath="Proof.fr\Proof.xml" RelativeSourcePath="Proof.fr\Proof.xml"/>
		<File Id="Proof.fr\Proof.msi" MD5="ECFB202FD60D293DFADFA1FC24935C55" Size="667648" RelativeCachePath="Proof.fr\Proof.msi" RelativeSourcePath="Proof.fr\Proof.msi"/>
		<File Id="Proof.fr\Proof.cab" MD5="B43263C4682F33069D8BE4B63ACA79F2" Size="20451562" RelativeCachePath="Proof.fr\Proof.cab" RelativeSourcePath="Proof.fr\Proof.cab"/>
		<File Id="Proof.es\Proof.xml" MD5="F1AAB00A550F3A96BDFC7CC294131C18" Size="1457" RelativeCachePath="Proof.es\Proof.xml" RelativeSourcePath="Proof.es\Proof.xml"/>
		<File Id="Proof.es\Proof.msi" MD5="9EA20B6803F30CBB34F6D3AEAAE1845F" Size="663040" RelativeCachePath="Proof.es\Proof.msi" RelativeSourcePath="Proof.es\Proof.msi"/>
		<File Id="Proof.es\Proof.cab" MD5="75254F3B5ECA0A3DFFC31E380DF430D4" Size="13184516" RelativeCachePath="Proof.es\Proof.cab" RelativeSourcePath="Proof.es\Proof.cab"/>
		<File Id="Proof.de\Proof.xml" MD5="F3AF7E0398C77ACA6149D3726A120930" Size="1459" RelativeCachePath="Proof.de\Proof.xml" RelativeSourcePath="Proof.de\Proof.xml"/>
		<File Id="Proof.de\Proof.msi" MD5="E3066C7F1DBB6F97D8078DAC655656A3" Size="663040" RelativeCachePath="Proof.de\Proof.msi" RelativeSourcePath="Proof.de\Proof.msi"/>
		<File Id="Proof.de\Proof.cab" MD5="E70C7F6828791E670C70897BDAE91E1D" Size="19088870" RelativeCachePath="Proof.de\Proof.cab" RelativeSourcePath="Proof.de\Proof.cab"/>
		<File Id="Proof.nl\Proof.xml" MD5="4A48A92AA8711FE99FFC6BDDAEF921B9" Size="1232" RelativeCachePath="Proof.nl\Proof.xml" RelativeSourcePath="Proof.nl\Proof.xml"/>
		<File Id="Proof.nl\Proof.msi" MD5="775037F5F9805D1FB9B216A9B47B3406" Size="654848" RelativeCachePath="Proof.nl\Proof.msi" RelativeSourcePath="Proof.nl\Proof.msi"/>
		<File Id="Proof.nl\Proof.cab" MD5="70FF6BE42B59F4CEAD88CF098EE2F4F9" Size="6578835" RelativeCachePath="Proof.nl\Proof.cab" RelativeSourcePath="Proof.nl\Proof.cab"/>
		<File Id="Setup.xml" MD5="" Size="" RelativeCachePath="Setup.xml" RelativeSourcePath="Setup.xml"/>
	</LocalCache>
</Setup>




But when I open OCT it gives me an error Posted Image

These are the language codes
ProofingTools_1031 German
ProofingTools_1033 English
ProofingTools_1036 French
ProofingTools_1043 Dutch
ProofingTools_3082 spanish

#75 User is offline   coucou 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 825
  • Joined: 01-January 04

Posted 27 December 2010 - 11:03 AM

View Postcoucou, on 14 December 2010 - 11:17 AM, said:

Hi,

I've built an unattended Office2010 silent install few month ago and tested it, it was working like a charm.

Today, although I've disabled UAC when I try installing it I get the message

Quote

Error 1907. Could not register font. Verify that you have sufficient permissions to install fonts, and that the system supports this font
Fail to install


TNX for yr help



HERE the solution

#76 User is offline   ZileXa 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 767
  • Joined: 27-May 04

Posted 02 February 2011 - 04:21 PM

View Postmyselfidem, on 14 December 2010 - 01:30 PM, said:

You can add the updates for Microsoft Office 2010 inside your installation folder, download here:

Office 2010 updates

*Edit:
First check if your full name is the same inside your Autounattend.xml for Windows 7 and inside your config.xml for Office 2010!


I downloaded the x64 updates I want, using Win7 x64. But the installation ends with an error saying its not a valid file:
Posted Image

So I tried WITHOUT the updates, I still get the same error! Office 2010 does get installed.
The log file doesn't say anything about the error, I suppose because Office 2010 was succesfully installed... but it ends with the error.

This my config.xml, the one I used without updates (I deleted the updates from the Updates folder, not the folder itself):
<Configuration Product="Standardr">

	<Display Level="basic" CompletionNotice="no" SuppressModal="no" AcceptEula="yes" />
	
	<Logging Type="standard" Path="D:\Downloads\Apps\office361\Standardr.WW" Template="Microsoft Office Standard Setup(*).txt" />

	<PIDKEY Value="(removed)" />

	<USERNAME Value="Gebruiker" /> -->
	
	<COMPANYNAME Value="NoCompany" /> -->
	
	<INSTALLLOCATION Value="%programfiles%\Microsoft Office" /> -->
	
	<!-- <LIS CACHEACTION="CacheOnly" /> -->
	
	<!-- <LIS SOURCELIST="\\server1\share\Office; \\server2\share\Office" /> -->
	
	<!-- <DistributionPoint Location="\\server\share\Office" /> -->
	
	<SetupUpdates CheckForSUpdates="No" SUpdateLocation=".\updates" />

        <OptionState Id="OneNoteFiles" State="absent" Children="force" />
        
        <OptionState Id="OUTLOOKFiles" State="absent" Children="force" />

        <OptionState Id="PubPrimary" State="absent" Children="force" />

	<Setting Id="SETUP_REBOOT" Value="NEVER" /> -->
	
	<Command Path="%windir%\system32\msiexec.exe" Args="/i .\Standardr.WW\Office32WW.msi" QuietArg="/qb" ChainPosition="after" Execute="install" />

</Configuration>


edit: I removed the product key ;)

This post has been edited by ZileXa: 02 February 2011 - 05:11 PM


#77 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,386
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 02 February 2011 - 04:48 PM

@ZileXa

I think the problem is with your "Autounattend.xml" file!

Maybe you can attach this one to see if there is some errors!

#78 User is offline   ZileXa 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 767
  • Joined: 27-May 04

Posted 02 February 2011 - 04:57 PM

Ooh you're quick! I modified my post completely because I also get the error when I do not install updates at all.

Also, I am testing all this on a machine where I manually installed Win7 x64 on, no autounattended.xml.

#79 User is offline   myselfidem 

  • Member
  • PipPipPipPipPipPipPipPip
  • Group: Members
  • Posts: 2,386
  • Joined: 06-January 10
  • OS:Windows 7 x86
  • Country: Country Flag

Posted 02 February 2011 - 05:06 PM

I've read your edited post!

Have you Office 2010 or 2007, because I read inside your "config.xml":

<Configuration Product="Standardr">

Have you downloaded the updates matching with your Microsoft Office version?

This post has been edited by myselfidem: 02 February 2011 - 05:12 PM


#80 User is offline   ZileXa 

  • Friend of MSFN
  • PipPipPipPipPip
  • Group: Members
  • Posts: 767
  • Joined: 27-May 04

Posted 02 February 2011 - 05:09 PM

View Postmyselfidem, on 02 February 2011 - 05:06 PM, said:

I've read your edited post!

Have you Office 2010 or 2007, because I read inside your "config.xml":

<Configuration Product="Standardr">

Have you downloaded the updates matching with your Microsoft Office verasion?


I have Office 2010 Standard. I did not modify that line in my config.xml... "standardr" was already there. It's the MSDN version I downloaded via the links you or someone in this topic provided.
The updates were the x64 updates I didn't find any updates specific to my version. But I deleted all the updates! So that cannot be the issue, the config.xml file is also not searching for updates.

I can start Word, Excel and Powerpoint just fine so I suppose the install was succesful but I don't want the installer to end with that stupid error message :(

OOO Sorry! I searched the log again and there is an error! I've attached the logfile, I do not have a clue what the error means:

OptionDependency: Setting InstallState of WordPiaReg32 to Local
OptionDependency: Setting InstallState of DCubeHidden to Local
OptionDependency: Setting InstallState of WhiteRabbitHidden to Local
OptionDependency: Setting InstallState of PowerPointPiaReg32 to Local
OptionDependency: Setting InstallState of ExcelPiaReg32 to Local
OptionDependency: Setting InstallState of GraphPiaReg32 to Local
OptionDependency: Setting InstallState of OCR_3082 to Local
Error: OptionDependency: Indirect dependencies are not supported. Option WISPHidden has a lead WISPFiles which also has 1 leads. 
OptionDependency: Setting InstallState of WISPHidden to Local
OptionDependency: Setting InstallState of WORDSharedFiles to Local
OptionDependency: Setting InstallState of XDOCSEditorFiles to Local
OptionDependency: Setting InstallState of FormsPiaReg32 to Local
OptionDependency: Setting InstallState of OCR_1036 to Local
OptionDependency: Setting InstallState of AcePiaReg32 to Local
OptionDependency: Setting InstallState of OCR_1033 to Local
OptionDependency: Setting InstallState of SmartTagPiaReg32 to Local
Final Option Tree:



Full log attached.

Attached File(s)


This post has been edited by ZileXa: 02 February 2011 - 05:16 PM


Share this topic:


  • 6 Pages +
  • « First
  • 2
  • 3
  • 4
  • 5
  • 6
  • You cannot start a new topic
  • You cannot reply to this topic

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



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