我已成功下载Office 2019
using Office Deployment Tool (ODT) 2019
,但当有可用更新时,脚本重新下载complete new
(但已更新)Office 2019。
all the files
当更新可用时,我不希望脚本下载。我想把它下载updates only
下来,这样我就可以保存了bandwidth
。
请帮忙。谢谢。
Configurations.xml 文件:
<Configuration>
<Add OfficeClientEdition="64" Channel="PerpetualVL2019">
<Product ID="ProPlus2019Volume">
<Language ID="en-us" />
</Product>
<Product ID="VisioPro2019Volume">
<Language ID="en-us" />
</Product>
<Product ID="ProofingTools">
<Language ID="ar-sa" />
</Product>
</Add>
<Updates Enabled="TRUE" />
<Display Level="Full" AcceptEULA="TRUE" />
</Configuration>
命令(在批处理文件中):
Setup.exe /download Configurations.xml
示例:如果 office 有 3 个文件,我希望 ODTFile 3
仅下载和更新,而不是下载所有 3 个文件:
办公版 2001.1111 | 办公版 2104.13929 |
---|---|
文件 1 版本 1.0 | 文件 1 版本 1.0 |
文件 2 版本 1.0 | 文件 2 版本 1.0 |
文件 3 版本 1.0 | 文件 3 版本 2.1 |
注意:我之前在StacksOverflow上发布了这个问题,但没有得到答案。
谢谢。