Skip to content

Instantly share code, notes, and snippets.

@zz-chen
Last active March 29, 2018 05:59
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zz-chen/0539f20616c3ec9ed747be5cf96ce267 to your computer and use it in GitHub Desktop.
Save zz-chen/0539f20616c3ec9ed747be5cf96ce267 to your computer and use it in GitHub Desktop.
Office 2016 ProPlus Setup xml for Office 2016 Deployment Tool

64BitのOffice Professional 2016のインストール方法

背景

https://setup.office.com/ (既にプロジェクトキーを入力したこと場合は、https://setup.office.com/home/getoffice )経由でOffice Professional 2016のインストーラーの入手・製品のインストールが可能です。ただ、残念のことは、32Bitになります。ここで、64Bitのインストール方法をメモします。

前提

  • Microsoft Office Pro Plus 2016のプロジェクトキーがあること
  • 対象のコンピュータインターネットに接続していること

注意事項

  • Office ProfessionalのProduct IDはProPlusRetail

使い方

<!-- self url : https://gist.github.com/zz-chen/0539f20616c3ec9ed747be5cf96ce267 -->
<!-- -->
<!-- this xml is created by this ↓ tool -->
<!-- Configuration XML Editor -->
<!-- https://officedev.github.io/Office-IT-Pro-Deployment-Scripts/XmlEditor.html -->
<!-- -->
<!--
1,download & extract The Office 2016 Deployment Tool
https://www.microsoft.com/en-us/download/details.aspx?id=49117
2,run the setup.exe which comes from office deployment tool
setup.exe /configure configuration.xml
-->
<!-- -->
<Configuration>
<Add OfficeClientEdition="64" Channel="Monthly">
<!-- ProPlusRetail = office pro plus -->
<Product ID="ProPlusRetail">
<Language ID="ja-jp"/>
<ExcludeApp ID="Lync"/>
<ExcludeApp ID="Groove"/>
<ExcludeApp ID="Publisher"/>
</Product>
</Add>
<Display Level="None" AcceptEULA="TRUE"/>
<!-- <Logging Level="Standard" Path="./logs/"/> -->
</Configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment