Office 365 ProPlus部署教程

Office 365 新旧UI对比

#玩机技巧# #酷安夜话# #电脑玩家# 铺路根据地

欢迎关注 @wherewhere 的铺路根据地 查看链接»,本次图文较长,如果第4步看不懂,可以跳过,不过会默认安装英文版32位Office。

什么是Office 部署工具?

Office 部署工具 (ODT) 是一个命令行工具,可用于下载并将其部署到客户端计算机 Office 365 ProPlus。ODT 为您提供了更多的 Office 安装控制: 您可以定义哪些产品和安装语言、 应该如何更新这些产品是否显示安装到您的用户体验。

下面教程开始

  1. 从Microsoft 下载中心(查看链接»)下载 Office 部署工具。

    下载
    下载页面
  2. 双击下载的工具,如下图,勾选“Click here to...”,点击“Continue”;

    启动
    打开
  3. 该工具会释放两个我们需要的文件(setup.execonfiguration.xml),如下图所示,选择解压的目录,这里选择解压在桌面。

    文件夹选择
    浏览文件夹
  4. 配置configuration.xml

    用记事本打开第3步解压得到的configuration文件

    configuration
    configuration.xml

    默认内容为(联机安装完整的英文版32位Office 365 ProPlus,包括Visio,走每月通道)

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    <Configuration>
    <Add OfficeClientEdition="32&quot; Channel="Monthly">
    <Product ID="O365ProPlusRetail">
    <Language ID="en-us" />
    </Product>
    <Product ID="VisioProRetail">
    <Language ID="en-us" />
    </Product>
    </Add>
    ...
    </Configuration>

    首先给出几个示例配置

    1. 联机安装完整的中文简体64位Office 365 ProPlus,包括Visio 和 Project ,走快速预览通道。

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      <Configuration>
      <Add OfficeClientEdition="64" Channel="InsiderFast">
      <Product ID="O365ProPlusRetail">
      <Language ID="zh-cn" />
      </Product>
      <Product ID="VisioProRetail">
      <Language ID="zh-cn" />
      </Product>
      <Product ID="ProjectProRetail">
      <Language ID="zh-cn" />
      </Product>
      <Display Level="Full"
      AcceptEULA="TRUE" />
      </Add>
      ...
      </Configuration>
    2. 联机安装完整的中文简体64位Office 365 ProPlus,不包括Visio 和 Project,走快速预览通道。

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      <Configuration>
      <Add OfficeClientEdition="64" Channel="InsiderFast">
      <Product ID="O365ProPlusRetail">
      <Language ID="zh-cn" />
      </Product>
      <Display Level="Full"
      AcceptEULA="TRUE" />
      </Add>
      ...
      </Configuration>
    3. 联机安装中文简体64位Office 365 ProPlus,只包括Word、PowerPoint和Excel,走快速预览通道。

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      17
      18
      <Configuration>
      <Add OfficeClientEdition="64" Channel="InsiderFast">
      <Product ID="O365ProPlusRetail">
      <Language ID="zh-cn" />
      </Product>
      <ExcludeApp ID="Access" />
      <ExcludeApp ID="Groove" />
      <ExcludeApp ID="InfoPath" />
      <ExcludeApp ID="Lync" />
      <ExcludeApp ID="OneNote" />
      <ExcludeApp ID="Outlook" />
      <ExcludeApp ID="Publisher" />
      <ExcludeApp ID="SharePointDesigner" />
      <Display Level="Full"
      AcceptEULA="TRUE" />
      </Add>
      ...
      </Configuration>
    4. 联机安装中文简体64位 Visio 和 Project,走快速预览通道。

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      <Configuration>
      <Add OfficeClientEdition="64" Channel="InsiderFast">
      <Product ID="VisioProRetail">
      <Language ID="zh-cn" />
      </Product>
      <Product ID="ProjectProRetail">
      <Language ID="zh-cn" />
      </Product>
      <Display Level="Full"
      AcceptEULA="TRUE" />
      </Add>
      ...
      </Configuration>

    以上内容只需复制并替换configuration.xml中如图选择部分即可。

    选中部分
    复制并替换图中选择部分

    如果以上内容已经能够满足你的要求,那么你就可以跳到第5步了,如果没有,请继续阅读

    详细配置configuration.xml

    1. Add 元素(定义要下载或安装的产品和语言)

      示例:

      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      <Add SourcePath="\\Server\Share" 
      OfficeClientEdition="32"
      Channel="Broad"
      Version="16.0.8201.2193"
      ForceUpgrade="FALSE">
      <Product ID="O365ProPlusRetail">
      <Language ID="en-us" />
      <Language ID="ja-jp" />
      </Product>
      <Product ID="VisioProRetail">
      <Language ID="en-us" />
      <Language ID="ja-jp" />
      </Product>
      </Add>
      • SourcePath 属性(属于 Add 元素)

        可选。当你有完整的Office镜像文件时,即可加载该镜像文件(Windows 8及以上双机镜像文件即可),SourcePath的值便是镜像文件加载位置

        SourcePath="G:\"

      • Version 属性(属于 Add 元素)

        可选。默认值为最新版本 Office。

        Version="16.0.8201.2193"

      • OfficeClientEdition 属性(属于 Add 元素)

        必需。定义是下载或安装 32 位版还是 64 位版 Office 365 专业增强版。

        允许值:

        1
        2
        OfficeClientEdition="64"
        OfficeClientEdition="32"
      • Channel 属性(属于 Add 元素)

        可选。更新通道,默认为Broad

        1
        2
        3
        Channel="Monthly"
        Channel="Broad"
        Channel="Targeted"
    2. Product 元素(定义要下载或安装的产品)

      示例

      1
      2
      3
      4
      5
      6
      7
      8
      <Product ID="O365ProPlusRetail">
      <Language ID="en-us" />
      <Language ID="ja-jp" />
      </Product>
      <Product ID="VisioProRetail">
      <Language ID="en-us" />
      <Language ID="ja-jp" />
      </Product>
      • ID 属性(属于 Product 元素)

        必需。定义要下载或安装的产品的 ID。

        如:

        1
        2
        3
        ID="O365ProPlusRetail" 
        ID="VisioProRetail"
        ID="ProjectProRetail"
    3. Language 元素(定义要下载或安装的语言)

      示例:

      1
      2
      3
      4
      <Product ID="O365ProPlusRetail">
      <Language ID="en-us" />
      <Language ID="ja-jp" />
      </Product>
      • ID 属性(属于 Language 元素)

        必需。定义要下载或安装的语言的 ID。

        如:

        1
        2
        3
        ID="en-us"
        ID="ja-jp"
        ID="MatchOS"
    4. ExcludeApp 元素(定义不应安装的 Office 365 专业增强版产品)

      示例:

      1
      2
      3
      4
      5
      6
      7
      8
      9
      <Add SourcePath="\\Server\Share" 
      OfficeClientEdition="32"
      Channel="Broad" >
      <Product ID="O365ProPlusRetail">
      <Language ID="en-us" />
      <Language ID="ja-jp" />
      <ExcludeApp ID="Publisher" />
      </Product>
      </Add>
      • ID 属性(属于 ExcludeApp 元素)

        必需。定义不应安装的产品的 ID。
        允许值:

        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        ID="Access"
        ID="Excel"
        ID="Groove"
        ID="Lync"
        ID="OneDrive"
        ID="OneNote"
        ID="Outlook"
        ID="PowerPoint"
        ID="Publisher"
        ID="Word"

        注:对于 OneDrive for Business,请使用 Groove。对于 Skype for Business,请使用 Lync。

    如果想了解更多,请前往Configuration options for the Office Deployment Tool,如果看不懂,请跳过。

  5. 以管理员身份CMD,运行下面的命令即可:

    1
    2
    cd /d H:\office365 ::(这里填你解压的目录)
    setup.exe /configure configuration.xml
    开始
    命令提示符

    然后就开始了

    启动图
    开始

    由于我以经安装过64位的了,所以就报错了

    报错弹窗
    报错

    如果你是首次安装,应该是这样

    安装
    正在安装

    安装完成后长这样

    引导
    安装完成
    完成
    命令提示符
  6. 激活

    随便找了一个流汗滑稽流汗滑稽流汗滑稽流汗滑稽查看链接»

  7. 更换通道与卸载

    下载Office Tool Plus自行解决
    @萌萌哒Yerong 流汗滑稽流汗滑稽流汗滑稽流汗滑稽

    Download Office
    Office Tool Plus

Office 365 ProPlus部署教程 作者 @wherewhere 2018年6月14日 发表于 酷安,转载请注明出处