good-arrow’s blog

https://good-arrow.net/

Office 365/2019 展開ツール(ODT)の configuration.xml メモ

Office 2019 の展開 (IT 担当者向け) | Microsoft Docs

「configuration.xml」作成メモ。



必要最小限メモ

<Configuration>
  <Add OfficeClientEdition="64" Channel="PerpetualVL2019">
      <Product ID="Standard2019Volume"  PIDKEY="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX" >
         <Language ID="ja-jp" />
      </Product>
  </Add>
  <RemoveMSI />
  <Property Name="AUTOACTIVATE" Value="TRUE" />
  <Display Level="None" AcceptEULA="TRUE" />  
</Configuration>
  • ダウンロードコマンド
setup.exe /download configuration.xml
  • インストールコマンド
setup.exe /configure configuration.xml



公式コンフィグ作成ツール「OCT(Officeカスタマイズツール)」で作る

https://config.office.com/

インストール除外設定

    <Product ID="Standard2019Volume" PIDKEY="XXXXX-XXXXX-XXXXX-XXXXX-XXXXX">
      <Language ID="ja-jp" />
      <ExcludeApp ID="Groove" />
      <ExcludeApp ID="OneDrive" />
      <ExcludeApp ID="OneNote" />
    </Product>
  </Add>

タスクバーにピン止めする設定

  <Property Name="PinIconsToTaskbar" Value="TRUE" />