前几天因工作需要使用visio软件画一些简单的流程图,我的电脑已经安装好了office20016增强版,我比较较真,非要安装visio2016软件来画图,这样就可以和office2016进行匹配啦,可是殊不知,结果令人沮丧,当我点击visio2016安装包的时候,弹出了如下提示框:
发现问题解决方法:
一、下载镜像
- Microsoft Office 2016版本(含visio) https://pan.baidu.com/s/1oAih5Tw
- office deployment tool https://pan.baidu.com/s/1hueVXRm 密码:x34k
二、开始安装
1、安装Office 2016 Deployment Tool
这个随意找地方安装就好了,主要是里面会有一个XML文件需要修改。
2、修改configuration.xml
打开XML后把<add>……</add>内的代码改成如下:
<!-- Office 365 client configuration file sample. To be used for Office 365 ProPlus 2016 apps,
Office 365 Business 2016 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
For Office 365 client apps (verion 2013) you will need to use the 2013 version of the
Office Deployment Tool which can be downloaded from http://aka.ms/ODT2013
The following sample allows you to download and install Office 365 ProPlus 2016 apps
and Visio Pro for Office 365 directly from the Office CDN using the Current Channel
settings -->
<Configuration>
<Add SourcePath="J:\" OfficeClientEdition="64" Channel="Current">
<Product ID="O365ProPlusRetail">
<Language ID="zh-cn" />
</Product>
<Product ID="VisioProRetail">
<Language ID="zh-cn" />
</Product>
<Product ID="proplusretail">
<Language ID="zh-cn" />
</Product>
</Add>
<!-- <Updates Enabled="TRUE" Channel="Current" /> -->
<!-- <Display Level="None" AcceptEULA="TRUE" /> -->
<!-- <Property Name="AUTOACTIVATE" Value="1" /> -->
</Configuration>
备注:其中Add后面添加的SourcePath="H:"是用虚拟光驱加载cn_visio_professional_2016_x86_x64_dvd_6970929.iso后的路径,OfficeClientEdition="64",是指定安装64位的,若是32位,请将此处改为32即可,然后保存一下。
接下来使用CMD控制台令行,键入如下代码进行执行
//需要在Office 2016 Deployment Tool安装目录下操作。
setup.exe /configure configuration.xml
开始安装,等待其完成。
安装过程截图安装完成
安装完成截图
网友评论