1.下载安装Office即选即用部署工具Office Deployment Tool
2.编辑configuration.xml,使用微软每月更新的office cdn策略下载和安装office,方便快捷
<!-- 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 32 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="32" Channel="Monthly">
<Product ID="O365ProPlusRetail">
<Language ID="en-us" />
</Product>
<Product ID="VisioProRetail">
<Language ID="en-us" />
</Product>
</Add>
<!-- <Updates Enabled="TRUE" Channel="Monthly" /> -->
<!-- <Display Level="None" AcceptEULA="TRUE" /> -->
<!-- <Property Name="AUTOACTIVATE" Value="1" /> -->
</Configuration>
<Configuration>
<Add SourcePath="d:\Office365\" OfficeClientEdition="32" >
<Product ID="O365ProPlusRetail">
<Language ID="zh-cn" />
</Product>
</Add>
<Updates Enabled="TRUE" UpdatePath="d:\Office365\" />
<Display Level="Full" AcceptEULA="TRUE" />
<Property Name="AUTOACTIVATE" Value="1" />
</Configuration>
3.下载离线安装包,大概半小时下载完
cd c:\office15
setup.exe /download configuration.xml
4.离线包的安装
setup.exe /configure configuration.xml
此处针对的是本地测试,对上文中的configuration.xml不做修改,批量部署的时候,参数只需略作修改即可。实测下来,速度给力。

5.总结
在批量部署时,可以将离线安装包放在一个企业内部的公共位置,所有人都具有读取权限即可,比如放在文件服务器中,例如\Server\Office365\,这种UNC路径下,然后修改之前描述的configuration.xml文件中的SourcePath路径即可,相同的,将setup和configuration.xml文件也放在某个公共位置即可,然后执行类似如下的命令行,即可开始客户端的安装操作。
\\Server\Office365\setup.exe /configure \\Server\Office365\configuration.xml
网友评论