使用ODT工具同时安装Office365订阅增强版、Visio2016专业版

2019-01-24 技术杂文 1804

注意

此方法安装完成,还需要你单独激活。

卸载原Office版本

卸载office 365

下载ODT工具

地址:www.microsoft.com/en...

双击解压到某个目录

目录:d:/odt

编辑某个 configuration-***.xml 文件

ODT解压文件

增加代码+语言支持

  • office365部分

<Product ID="O365ProPlusRetail">
    <Language ID="zh-cn" />
    <Language ID="en-us" />
</Product>
  • visio部分

<Product ID="VisioProRetail">
	<Language ID="zh-cn" />
	<Language ID="en-us" />
</Product>

说明

# Language代码块: ID="zh-cn" 简体中文支持
# Product 代码块:ID="VisioProRetail"VISIO2016专业版
# Visio 2016 VL版本
<Product ID="VisioProXVolume" PIDKEY="69WXN-MBYV6-22PQG-3WGHK-RM6XC">

完整参考如下

<Configuration>
  <Add OfficeClientEdition="64" Channel="Monthly">
    <Product ID="O365ProPlusRetail">
      <Language ID="zh-cn" />
      <Language ID="en-us" />
    </Product>
    <Product ID="VisioProRetail">
      <Language ID="zh-cn" />
      <Language ID="en-us" />
    </Product>
  </Add>
  <!--  <Updates Enabled="TRUE" Channel="Monthly" /> -->
  <!--  <Display Level="None" AcceptEULA="TRUE" />  -->
  <!--  <Property Name="AUTOACTIVATE" Value="1" />  -->
</Configuration>

最后执行命令

  • 根据配置文件,安装

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

命令说明

SETUP [mode] [path]

SETUP /download [path to configuration file]
SETUP /configure [path to configuration file]
SETUP /packager [path to configuration file] [output path]
SETUP /customize [path to configuration file]
SETUP /help
0