这篇文章将为大家详细讲解有关如何定制Office 365离线安装程序,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
现在的Office365都在在线安装,但针对企业批量部署,我们可以提前下载好离线包,并被定制安装文件进行快速安装。
1、 下载并解压ODT工具(Office Deployment Tool), https://www.microsoft.com/en-us/download/details.aspx?id=49117
2、 修改下载配置文件:download.xml
<Configuration>
<Add OfficeClientEdition="64" Channel="Broad">
<Product ID="O365ProPlusRetail">
<Language ID="en-us" />
<Language ID="zh-cn" />
<Language ID="zh-tw" />
</Add>
</Configuration>
如果只需要下载一个语言版本的,可将其它语言的配置删除。
3、 下载安装文件:
Setup.exe /download download.xml
执行过程会从网上下载完整的离线安装包,需要的时间比较久。
4、 修改安装配置文件:install.xml
Setup.exe /config install.xml
<Configuration>
<Add SourcePath="\\scm741\DeploySource$\MSI\O365\O365_64"
OfficeClientEdition="64" Channel="Broad">
<Product ID="O365ProPlusRetail">
<Language ID="zh-cn"/>
</Product>
</Add>
</Configuration>
5、 修改卸载配置文件:Uninstall.xml
<Configuration>
<Remove>
<Product ID="O365ProPlusRetail">
<Language ID="zh-cn"/>
</Product>
</Remove>
<Display Level="Base" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
</Configuration>
6、 共享O365安装程序,如:
\\YourServer\deploysource$\MSI\O365\O365_32
\\YourServer\deploysource$\MSI\O365\O365_64
目录文件如下:
7、 共享中的O365目录,可以针对不同的版本需示,定制不同的XML配置文件,然后定制成不同的批处理执行安装!
安装程序执行:setup.exe /configure install.xml
卸载程序执行:setup.exe /configure uninstall.xml
8、 如果要在部署的同时,卸载旧版的Office 2013,在Office2013安装目录运行:Setup.exe /uninstall proplus /config “\\YouerServer\DeploySource$\Uninstall_Office\Uninstall2013.xml“,也可以同时放进批处理中,先执行卸载命令再安装!
Uninstall2013.xml文件内容如下:
<Configuration>
<Display Level="Base" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />
</Configuration>