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

本文介绍如何通过Office Deployment Tool选择性安装Office365组件,避免安装不需要的应用如OneDrive、Outlook等,适用于希望精简安装的用户。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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)。后续需要登录微软账户以保持激活状态。

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值