Page 1 of 2
[SOLVED] windows 10 1803 upgrade package
Published: October 1, 2018 - 3:51 PM
by cdeze
Good morning,
Were you able to create a package to update a Windows 10 1709 to 1803?
That seems possible:
https://joshheffner.com/automate-window ...mand-line/
I tried a
Code: Select all
run("setup.exe",'/auto upgrade /quiet /migratedrivers all /dynamicupdate enable /showoobe none',timeout=72000 )
But it doesn't seem to do anything.
THANKS
Re: windows 10 1803 upgrade package
Published: October 2, 2018 - 9:39 AM
by agauvrit
Good morning,
Our latest tests on this subject have revealed a very strange problem: the package only works in a graphical session on a local administrator account of the machine, so you have to go through each machine and type
Code: Select all
wapt-get install tis-win10upgrade-1803
We haven't investigated further than that, but it must be possible; if you succeed, we would be delighted to share the recipe.
Note, however, that this is a complete OS reinstallation and not just a simple KB, so it seems normal that the WAPT package returns some rather bizarre error codes.
Alexander
Re: windows 10 1803 upgrade package
Published: October 2, 2018 - 11:17 AM
by cdeze
Okay,
thanks.
I'm trying with psexec
https://community.spiceworks.com/topic/ ... nd-updates
but it's no better.
Re: windows 10 1803 upgrade package
Published: October 2, 2018 - 3:21 PM
by cdeze
I think it's okay!
with psexec and the Windows 1803 installation files
http://image.noelshack.com/fichiers/201 ... urew10.png
Code: Select all
def install():
print('installing sidsic-w10-1803')
print('copie des fichiers')
run_notfatal(r'robocopy . C:\Windows10Upgrade /s')
print('MAJ vers 1803')
run(r'psexec.exe -accepteula -nobanner -i -s C:\Windows10Upgrade\setup.exe /auto upgrade /quiet /migratedrivers all /dynamicupdate disable /showoobe none',timeout=18000 )
Re: windows 10 1803 upgrade package
Published: October 2, 2018 - 7:15 PM
by agauvrit
We'll take a closer look at that.

Thanks for your contribution.
Re: [SOLVED] windows 10 1803 upgrade package
Published: October 3, 2018 - 8:54 AM
by cdeze
I'm trying today with the 1809

Re: [SOLVED] windows 10 1803 upgrade package
Published: October 3, 2018 - 9:20 AM
by cdeze
However, the package must be a bit large; I'm getting a timeout
Code: Select all
Uploading E:\Documents\WaptDev\sidsic-w10-1809_10.0.17763.2_all.wapt: 3712964513 / 3712964513
Done Uploading E:\Documents\WaptDev\sidsic-w10-1809_10.0.17763.2_all.wapt
>>>
>>> FATAL ERROR : HTTPError: 504 Server Error: Gateway Time-out for url: https://wapt.ddcs72.local/api/v3/upload_packages
Exit code: 3
Re: [SOLVED] windows 10 1803 upgrade package
Published: October 3, 2018 - 9:31 AM
by agauvrit
In our tests, we split the packets in two:
- A package containing the update data (folder creation and copytree2)
- A package containing installation instructions (update installation)
The -data package is dependent on the other, so if we perform successive upload tests, we don't overload the WAPT server and clients with 4GB packages
Alexander
Re: [SOLVED] windows 10 1803 upgrade package
Published: January 26, 2019 - 3:42 PM
by jam
Hello,
I just installed the latest version of Wapt Community and while browsing the forum, I came across this topic which interests me.
Apparently, it's possible to deploy the Windows 10 1803 update?
So, to overcome the problem of the package being too large, you're saying it should be split into two?
Could you please detail the procedure?
- What data should be included in the "data" package and what commands should be in the package's setup.py file
? - What configuration should the instruction package have?
Thank you in advance for your reply.
Re: [SOLVED] windows 10 1803 upgrade package
Published: February 7, 2019 - 1:31 PM
by Christophe
Hello,
I'm also interested in the method.
Could you explain it to us?
Thank you.