OneNote2016和Visio 2016同时安装

软件下载

1.微软官网下载office2016部署工具web

  1. 微软官网下载office2016部署工具:网址,或者上面提供的连接
  2. 打开下载的部署工具,并将其释放到桌面
    在这里插入图片描述
    在这里插入图片描述
  3. 右键单击office.iso文件加载至虚拟光驱
  4. 用记事本或者sublime打开桌面上的configuration文件,用如下代码覆盖:
<Configuration>
  <Add SourcePath="V:\" OfficeClientEdition="64" >
    <Product ID="ProPlusRetail">
      <Language ID="zh-CN" />
      <ExcludeApp ID="Access" />
      <ExcludeApp ID="Groove" />
      <ExcludeApp ID="InfoPath" />
      <ExcludeApp ID="Lync" />
      <ExcludeApp ID="Outlook" />
      <ExcludeApp ID="Publisher" />
      <ExcludeApp ID="Skype for Business" />
      <ExcludeApp ID="SharePointDesigner" />
    </Product>
    <Product ID="VisioProRetail">
      <Language ID="zh-CN" />
    </Product>
  </Add>  
</Configuration>

注意缩进以及64位,SourcePath是指虚拟光驱的盘符shell

cd /d Desktop
setup.exe /configure configuration.xml

在这里插入图片描述