Difference between revisions of "MS Office 2010"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (Created page with "=MS Office 2010= 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...")
 
(Add structure and a section on customization with details on disabling the opt-in welcome wizard.)
Line 2: Line 2:
  
 
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.
 
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==
  
 
<source lang="xml">
 
<source lang="xml">
Line 21: Line 29:
 
</upgrade>
 
</upgrade>
 
      
 
      
<remove cmd='%comspec% /C start "" /wait "%SOFTWARE%\office\msoffice10\source_files\setup.exe" /uninstall ProPlus /config  "%SOFTWARE%\office\msoffice10\maths_config\silentuninstall.xml"' >
+
<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" />
 
<exit code="3010" />
 
</remove>
 
</remove>
Line 41: Line 49:
  
 
The line '<Setting Id="SETUP_REBOOT" Value="NEVER" />' sops the pc rebooting when Office is removed, omitting this line <u>will</u> reboot your pc without you being asked!
 
The line '<Setting Id="SETUP_REBOOT" Value="NEVER" />' sops the pc rebooting when Office is removed, omitting this line <u>will</u> reboot your pc without you being asked!
 +
 +
==KMS Activation==
  
 
To activate Office via KMS, a 'dependant' WPKG XML file is created.
 
To activate Office via KMS, a 'dependant' WPKG XML file is created.

Revision as of 18:15, 9 September 2011

MS Office 2010

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%