自定义安装Office 365(适用于个人版订阅等)

Office365默认会安装全家桶(除了Word, PPT,Excel外还有Access, OneNote, Skype等等),对于不想使用三件套之外的用户来说,可以通过以下方式选择性安装:

1. 下载ODT(Office Deployment Tool)

参见Office部署工具概述,或直接从Microsoft下载中心下载.

2. 下载完成后运行,选择文件夹解压文件。得到几个xml和一个setup.exe

3. 为了获取正确的配置内容,可以参考官方文档 Office部署工具的配置选项。或者使用微软官方提供的Office自定义工具,或者使用GitHub上一个repo提供的工具,不过这个工具默认会弹出一个大窗口,需要F12一下手动从DOM里删掉弹出窗口和灰色蒙版才能正常使用。

在线获得的内容如下:

<Configuration>

    <Add OfficeClientEdition="64" Channel="Current">

        <Product ID="O365ProPlusRetail">

            <Language ID="zh-cn"/>

            <ExcludeApp ID="OneDrive"/>

            <ExcludeApp ID="Outlook"/>

            <ExcludeApp ID="OneNote"/>

            <ExcludeApp ID="Lync"/>

            <ExcludeApp ID="Groove"/>

            <ExcludeApp ID="Access"/>

            <ExcludeApp ID="Publisher"/>

        </Product>

    </Add>

</Configuration>

由于我订阅的是个人版,所以需要把ProductID换成 O365HomePremRetail 整理完成之后如下:

<!– Office 365 client configuration file sample. To be used for Office 365 ProPlus apps, 

     Office 365 Business apps, Project Pro for Office 365 and Visio Pro for Office 365. 

 

     For detailed information regarding configuration options visit: http://aka.ms/ODT. 

     To use the configuration file be sure to remove the comments

 

     The following sample allows you to download and install the 64 bit version of the Office 365 ProPlus apps 

     and Visio Pro for Office 365 directly from the Office CDN using the Monthly Channel

     settings  –>

 

<Configuration>

 

  <Add OfficeClientEdition="64" Channel="Monthly">

    <Product ID="O365HomePremRetail">

            <Language ID="zh-cn"/>

            <ExcludeApp ID="OneDrive"/>

            <ExcludeApp ID="Outlook"/>

            <ExcludeApp ID="OneNote"/>

            <ExcludeApp ID="Lync"/>

            <ExcludeApp ID="Groove"/>

            <ExcludeApp ID="Access"/>

            <ExcludeApp ID="Publisher"/>

        </Product>

  </Add>

 

  <!–  <Updates Enabled="TRUE" Channel="Monthly" /> –>

 

  <!–  <Display Level="None" AcceptEULA="TRUE" />  –>

 

  <!–  <Property Name="AUTOACTIVATE" Value="1" />  –>

 

</Configuration>

 

4. 保存,然后在当前文件夹启动cmd,输入:

setup.exe /configure configuration-Office365-x64.xml

其中xml文件名可能会不太一样

5. 完成,安装程序将自动启动并下载指定内容(Word,Excel,PPT)。后续需要登录微软账户以保持激活状态。

 

Published by

风君子

独自遨游何稽首 揭天掀地慰生平