Difference between revisions of "MS Office 2010"
(→MS Office 2010 Single License: installation) |
(→Installation (Work in Progress!!!)) |
||
Line 135: | Line 135: | ||
TODO: test out of WPKB (not happend yet) | TODO: test out of WPKB (not happend yet) | ||
− | + | ===change Product Key=== | |
+ | |||
+ | If you delete all subkeys from [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Office\14.0\Registration] (for 32bit Office in a 64bit windows) or HKEY_LOCAL_MACHINE\Software\Microsoft\Office\14.0\Registration\ (for a 64bit Office) after install (and before first usage), Office ask the user for the product key after startup. At the moment, I dont know a way to direct the client to separate config.xml with the correct Product Key for him. | ||
==Configuration== | ==Configuration== |
Revision as of 14:26, 1 February 2012
Contents
MS Office 2010 (volume license)
For this install, create a custom MSP file by running the Office setup.exe with /admin. Customise the installation you require (don't install Outlook etc. One tip, if installing Access, also install 'Visual Basics'). The MSP file can be saved outside the documents \upgrades directory if you wish to.
Customization
Disable the Opt-in Welcome Wizard
In the Customization Tool, go to Features \ Modify user settings \ Microsoft Office 2010 \ Privacy \ Trust center and set "Disable opt-in wizard on first run" to Enabled.
Installation
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package id="msoffice2010" name="Microsoft Office 2010" revision="1" reboot="false" priority="72">
<check type="uninstall" condition="exists" path="Microsoft Office Professional Plus 2010" />
<install cmd='%comspec% /C start "" /WAIT "%SOFTWARE%\office\msoffice10\source_files\setup.exe" /adminfile "%SOFTWARE%\office\msoffice10\maths_config\maths_base_install.MSP"' >
<exit code="1641" />
<exit code="3010" />
</install>
<upgrade cmd='%comspec% /C start "" /WAIT "%SOFTWARE%\office\msoffice10\source_files\setup.exe" /adminfile "%SOFTWARE%\office\msoffice10\maths_config\maths_base_install.MSP"' >
<exit code="1641" />
<exit code="3010" />
</upgrade>
<remove cmd='%comspec% /C start "" /WAIT "%SOFTWARE%\office\msoffice10\source_files\setup.exe" /uninstall ProPlus /config "%SOFTWARE%\office\msoffice10\maths_config\silentuninstall.xml"' >
<exit code="3010" />
</remove>
</package>
</packages>
To remove Office 2010, as per Office 2007, create a file (silentuninstall.xml) containing:
<Configuration Product="ProPlus">
<Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
<Setting Id="SETUP_REBOOT" Value="NEVER" />
</Configuration>
The line '<Setting Id="SETUP_REBOOT" Value="NEVER" />' sops the pc rebooting when Office is removed, omitting this line will reboot your pc without you being asked!
KMS Activation
To activate Office via KMS, a 'dependant' WPKG XML file is created.
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package id="msoffice2010-activation" name="Activation MS Office 2010" revision="1" reboot="false" priority="71">
<depends package-id="msoffice2010" />
<variable name="update" value="01" />
<check type="execute" path="%software%\office\msoffice10\maths_config\activation.bat" condition="exitcodeequalto" value="0" />
<check type="file" condition="exists" path="%PROGRAMFILES%\Microsoft Office\Office14\WORDIRM.XML.%update%" />
<!-- First make a backup of the a random file, WORDIRM.XML file. This is used for the <remove /> part of this file as there isn't
an uninstaller for the update therefore we need to uninstall something to make the <check /> work so that we can then uninstall
the main Maple program-->
<install cmd='%COMSPEC% /c copy /y "%PROGRAMFILES%\Microsoft Office\Office14\WORDIRM.XML" "%PROGRAMFILES%\Microsoft Office\Office14\WORDIRM.XML.%update%"' >
<exit code="any" />
</install>
<!-- Now do the KMS... -->
<install cmd='"%SYSTEMROOT%\system32\cscript" "%PROGRAMFILES%\Microsoft Office\Office14\OSPP.vbs" /sethst:kms.somewhere.over.the.rainbow' />
<install cmd='"%SYSTEMROOT%\system32\cscript" "%PROGRAMFILES%\Microsoft Office\Office14\OSPP.vbs" /act' />
<remove cmd='%COMSPEC% /c del /q "%PROGRAMFILES%\Microsoft Office\Office14\WORDIRM.XML.%update%"' />
<!--
To check Office is activated, run
cscript "c:\program files\Microsoft Office\Office14\OSPP.vbs" /dstatus
-->
</package>
</packages>
So that this package can be uninstalled, a random file in c:\program files\Microsoft Office\office14\ is copied, a 'check' added and the <remove> line removes this copied file.
activation.bat =
@echo off %Systemroot%\system32\cscript "%ProgramFiles%\Microsoft Office\Office14\OSPP.vbs" /dstatus | find "---LICENSED---" exit %errorlevel%
MS Office 2010 Single License
The Office Customization Tool (OCT) is available only with volume licensed versions of Office 2010 and the 2007 Office system. The prices of volume licenses are significantly higher, than for single licenses. So the above solution can't be used if you bought single licenses for budget reasons.
Config.xml
To configure a silent installation (unattended installation) of an Office 2010 product that requires no user interaction, create a Config.xml. You finde an example in a subfolder of the installation called product_folder_name.WW
<Configuration Product="SingleImage">
<Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
<!-- <Logging Type="standard" Path="c:\temp" Template="MS_Office_Install_Log.txt" /> -->
<PIDKEY Value="AAAAABBBBBCCCCCDDDDDEEEEE" /> <!-- you have to enter a valid key here! -->
<!-- <USERNAME Value="Customer" /> -->
<!-- <COMPANYNAME Value="Organisation" /> -->
<!-- <INSTALLLOCATION Value="%programfiles%\Microsoft Office" /> -->
<!-- <LIS CACHEACTION="CacheOnly" /> -->
<!-- <LIS SOURCELIST="\\server1\share\Office;\\server2\share\Office" /> -->
<!-- <DistributionPoint Location="\\server\share\Office" /> -->
<!-- choose what to install -->
<OptionState Id="ACCESSFiles" State="Absent" Children="force" /><!-- Access -->
<OptionState Id="EXCELFiles" State="Local" Children="force" /><!-- Excel -->
<OptionState Id="OneNoteFiles" State="Absent" Children="force" /><!-- OneNote -->
<OptionState Id="OUTLOOKFiles" State="Absent" Children="force" /><!-- Outlook -->
<OptionState Id="PPTFiles" State="Local" Children="force" /><!-- Powerpoint -->
<OptionState Id="PubPrimary" State="Absent" Children="force" /><!-- Publisher -->
<OptionState Id="WORDFiles" State="Local" Children="force" /><!-- Word -->
<!-- <Setting Id="Reboot" Value="IfNeeded" /> -->
</Configuration>
Installation (Work in Progress!!!)
Then call setup.exe /config \\path to your modified\config.xml
TODO: test out of WPKB (not happend yet)
change Product Key
If you delete all subkeys from [HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Office\14.0\Registration] (for 32bit Office in a 64bit windows) or HKEY_LOCAL_MACHINE\Software\Microsoft\Office\14.0\Registration\ (for a 64bit Office) after install (and before first usage), Office ask the user for the product key after startup. At the moment, I dont know a way to direct the client to separate config.xml with the correct Product Key for him.
Configuration
If you have an Windows Server with an AD, it is possible to use Group Policy to enforce some Office 2010 settings. You need the Office 2010 Administrative Template files and find an comprehensive guide in this document (change language before download if needed). --Konus 15:10, 1 February 2012 (CET)