Re: [SOLVED] windows 10 1803 upgrade package
Published: February 7, 2019 - 2:14 PM
Good morning,
First package - tis-win10-data - it contains the complete Windows 10 ISO
Second package - tis-win10-install (with the tis-win10-data package as a dependency)
That's the shortened version of this package that we have internally.
By assigning the second package to the relevant workstations, they will first install the Data package which will copy and paste the contents of the ISO into a C:\WindowsUpgrade folder, then the second package which will silently install the latest version of Windows 10.
Warning, this is very long.
Don't forget to clean the temporary folder after installation
First package - tis-win10-data - it contains the complete Windows 10 ISO
Code: Select all
path_install = makepath('C:',"WindowsUpgrade")
def install():
mkdirs(path_install )
copytree2("iso",path_install)Code: Select all
path_install = makepath('C:',"WindowsUpgrade")
def install():
os.chdir(path_install)
run(r'"setup.exe" /auto upgrade /quiet',timeout=1800)By assigning the second package to the relevant workstations, they will first install the Data package which will copy and paste the contents of the ISO into a C:\WindowsUpgrade folder, then the second package which will silently install the latest version of Windows 10.
Warning, this is very long.
Don't forget to clean the temporary folder after installation