[SOLVED] windows 10 1803 upgrade package

Questions about WAPT Packaging / Requests and help regarding Wapt packages.
Forum Rules
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
cdeze
Messages: 31
Registration: Nov 29, 2016 - 09:39

October 1, 2018 - 3:51 PM

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
User avatar
agauvrit
WAPT Expert
Messages: 238
Registration: Nov 17, 2016 - 10:25
Location: Nantes
Contact :

October 2, 2018 - 9:39 AM

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
cdeze
Messages: 31
Registration: Nov 29, 2016 - 09:39

October 2, 2018 - 11:17

Okay,
thanks.
I'm trying with psexec
https://community.spiceworks.com/topic/ ... nd-updates
but it's no better.
cdeze
Messages: 31
Registration: Nov 29, 2016 - 09:39

October 2, 2018 - 3:21 PM

I think it's okay!
with psexec and the Windows 1803 installation files

Picture
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 )
User avatar
agauvrit
WAPT Expert
Messages: 238
Registration: Nov 17, 2016 - 10:25
Location: Nantes
Contact :

October 2, 2018 - 7:15 PM

We'll take a closer look at that. ;)
Thanks for your contribution.
cdeze
Messages: 31
Registration: Nov 29, 2016 - 09:39

October 3, 2018 - 8:54 AM

I'm trying today with the 1809 ;)
cdeze
Messages: 31
Registration: Nov 29, 2016 - 09:39

October 3, 2018 - 9:20 AM

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
User avatar
agauvrit
WAPT Expert
Messages: 238
Registration: Nov 17, 2016 - 10:25
Location: Nantes
Contact :

October 3, 2018 - 9:31 AM

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
jam
Messages: 1
Registration: January 26, 2019 - 3:36 PM

January 26, 2019 - 3:42 PM

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.
Christophe
Messages: 85
Registration: June 5, 2018 - 8:31 AM
Location: Arras (62)
Contact :

February 7, 2019 - 1:31 PM

Hello,

I'm also interested in the method.
Could you explain it to us?

Thank you.
Locked