Hello,
we want to implement O365 updates in our organization, I'm already a bit familiar to click to run feature and xml config files.
How can I do it fast and without problems? I want to stream from local server. As far as now updates are not configured. I have xml:
<Configuration>
<Add OfficeClientEdition="32" >
<Product ID="O365ProPlusRetail">
<Language ID="en-us" />
</Product>
</Add>
<Updates Enabled="TRUE" UpdatePath="\\server01\office\" />
<Display Level="None" AcceptEULA="TRUE" />
<Logging Name="OfficeSetup.txt" Path="%temp%" />
</Configuration>
I want now to cinfigure clients to use \\server01\office\
Is it enough if I run on each computer command setup.exe /configure myxml.xml to reconfigure all clients?
Second: I want to use scheduled tasks to automatically download updates on specified date, scheduled task has to run a program:
setup.exe /download myxml.xml
<Configuration>
<Add SourcePath="\\server01\office" OfficeClientEdition="32">
<Product ID="O365ProPlusRetail">
<Language ID="en-us" />
</Product>
</Add>
</Configuration>
Is it correct approach? Does someone see any problems with that? And can I use SCCM somehow for deployment?
Thanks for answers.


