@abbodi1406 in your UUP Convert script (convert-UUP.cmd) in the cleanup option has a warning "on 18362 and later, this removes the base RTM Edition packages" so what is the consequence of this? And could you explain the difference between using cleanup only or using resetbase in 18362 since both use SupersededActions = 3? What is the difference between SupersededActions equal to 0, 1 or 3?
It may break some future CU installation both have same effect remove components superseded by CU + compress components superseded by other updates (ssu, flash, .net)
Hi Abbodi1406, awesome work again, I'm using a lot of your scripts on a daily basis. Can you make the script so that it is possible to pass certain parameters on the command line? Such as architecture, language code? On a 64 bit system it installs x86 by default. I remember in WUI it was possible to set some variables inside the script, this would also be nice here. Your script already does a silent Edge install, now if it can be unattended by passing variables it will be perfect. Cheers.
Architecture is determined by the offline installer (e.g. MicrosoftEdge_X64_80.0.361.103.exe) the installation location "C:\Program Files (x86)" is by MS design, for x64 or x86 the script shows a menu for Language selection if you mean to create command line switches for the script to do unattended installation, it's doable
Good? Spoiler ## Command Line Switches * All switches are case-insensitive, works in any order, but must be separated with spaces * You can use the long form or the short form for channel and level * Architecture is determined based on the detected offline installer for Windows x64/arm64, 64-bit installer takes precedence if detected with 32-bit installer (x86) - language: Code: /L lang mandatory switch, it must be specified - channel: Code: /Canary /Dev /Beta /Stable /CC /CD /CB /CS if not specified, default is Stable if multiple switches are specified, the last one takes precedence - installation level: Code: /System /User /S /U if not specified, default is System (with admin privileges), or User (without admin privileges) if multiple switches are specified, the last one takes precedence Canary channel always default to User level * Examples: install Edge Canary, french language Code: EdgeChromiumInstaller.cmd /canary /l fr install Edge Stable, english language, system level Code: EdgeChromiumInstaller.cmd /l en EdgeChromiumInstaller.cmd /L en /Stable EdgeChromiumInstaller.cmd /L en /Stable /System install Edge Beta, chinese language, system level Code: EdgeChromiumInstaller.cmd /Beta /System /L zh-cn EdgeChromiumInstaller.cmd /l zh-cn /cb /s
Can someone help me with a batch script for unattended installation of a list of .exe and .msi applications the script should be able to install any .exe or .msi application copied in the same folder where the batch script is executed.
Maybe you can find some info to start with, here: [REPO/HOW-TO/CHAT] Audit/Sysprep/Generalize; Setupcomplete/Firstlogon; Silent Install
Hey @abbodi1406! I was just testing your ECOI script and noticed something: The Edge installer uses X64 in the filename for 64-bit architecture. But you are using %PROCESSOR_ARCHITECTURE% for the variable xOS, so it always says that no Edge Offline Installer is detected. Possible fix: Code: if "!xOS!"=="AMD64" set "xOS=X64"
============================================================ Running W7ESUI v0.2 ============================================================ ============================================================ Extracting .cab files from .msu files ============================================================ 1/1: windows6.1-kb4550964-x64_2a8ada96b48a57fd2d3a377c8635f420f237e71b.msu ============================================================ Extracting files from update cabinets (.cab) *** This will require some disk space, please be patient *** ============================================================ 1/1: Windows6.1-KB4550964-x64.cab ============================================================ Checking Updates... ============================================================ ============================================================ Installing updates... ============================================================ ==== Error ==== Windows6.1-KB4550964-x64 require SSU version 6.1.7601.24550 ============================================================ Removing temporary extracted files... ============================================================ ============================================================ Finished ============================================================ Is there anything I can do to help? I've got KB4540688 already installed
"require SSU version 6.1.7601.24550" You need the latest Servicing Stack Update installed first, you will have to do this every month when it is released Go to catalog.update.microsoft.com search: Servicing Stack Update Find the proper OS and bit version, then find the latest date for that, download and install.