if i wanna try making up to date iso with this https://forums.mydigitallife.net/th...-20h1-2-vb_release.80763/page-16#post-1571109 which one is better for base iso? 19041.1, 19041.84, 19041.208 or 19041.264
I’m currently deploying 19042.450. But I’m seeing 19041.479 on UUP only with 19041. Is 479 a valid update for 19042?
@donmiller Not necessary 19042 enablement package kb4562830 already contain Edge (unless you skipped it) installing that Edge 19041.479 update will not change OS version to 479
Not sure about skipping but you can uninstall it using this batch file. Copy/Paste it in a Notepad TXT file then save it to Uninstall Edge Chromium.bat and run it as admin: Code: @echo off reg.exe query "HKU\S-1-5-19" 1>nul 2>nul || (echo Run the script as administrator&pause&exit) set "u_path=%LocalAppData%\Microsoft" set "s_path=%ProgramFiles(x86)%\Microsoft" if /i %PROCESSOR_ARCHITECTURE%==x86 (if not defined PROCESSOR_ARCHITEW6432 ( set "s_path=%ProgramFiles%\Microsoft" ) ) for /D %%i in ("%u_path%\Edge SxS\Application\*") do if exist "%%i\installer\setup.exe" ( start "" /w "%%i\installer\setup.exe" --uninstall --msedge-sxs --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%u_path%\Edge Internal\Application\*") do if exist "%%i\installer\setup.exe" ( start "" /w "%%i\installer\setup.exe" --uninstall --msedge-internal --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%u_path%\Edge Dev\Application\*") do if exist "%%i\installer\setup.exe" ( start "" /w "%%i\installer\setup.exe" --uninstall --msedge-dev --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%u_path%\Edge Beta\Application\*") do if exist "%%i\installer\setup.exe" ( start "" /w "%%i\installer\setup.exe" --uninstall --msedge-beta --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%u_path%\Edge\Application\*") do if exist "%%i\installer\setup.exe" ( start "" /w "%%i\installer\setup.exe" --uninstall --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%u_path%\EdgeWebView\Application\*") do if exist "%%i\installer\setup.exe" ( start "" /w "%%i\installer\setup.exe" --uninstall --msedgewebview --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%s_path%\EdgeWebView\Application\*") do if exist "%%i\installer\setup.exe" ( start "" /w "%%i\installer\setup.exe" --uninstall --msedgewebview --system-level --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%s_path%\Edge\Application\*") do if exist "%%i\installer\setup.exe" ( start "" /w "%%i\installer\setup.exe" --uninstall --system-level --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%s_path%\Edge Beta\Application\*") do if exist "%%i\installer\setup.exe" ( start "" /w "%%i\installer\setup.exe" --uninstall --msedge-beta --system-level --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%s_path%\Edge Dev\Application\*") do if exist "%%i\installer\setup.exe" ( start "" /w "%%i\installer\setup.exe" --uninstall --msedge-dev --system-level --verbose-logging --force-uninstall --delete-profile ) for /D %%i in ("%s_path%\Edge Internal\Application\*") do if exist "%%i\installer\setup.exe" ( start "" /w "%%i\installer\setup.exe" --uninstall --msedge-internal --system-level --verbose-logging --force-uninstall --delete-profile ) pause
Some third-party programs will not function in 19042. In that case, I have successfully uninstalled (or rolled-back) the enablement package. The version number is decremented from 19042 --> 19041 and the enabled 20H2 features are then disabled again (except for Chrome). You can go from 19042.450 to 19041.450. But Chrome remains installed even under those conditions. I have already done this. When you apply the enablement package a second time, Chrome does not appear to get reinstalled because it is already installed. It is an interesting phenomenon, but I don't plan to make a habit of enabling and disabling 20H2 features. So I'm back at 19042 and do not plan to go back to 19041. I will not be applying the Chrome update for now.
Judging by what you posted it looks like I phrased my question wrong. If I was building a new image integrating kb4566782, kb4569745 and kb4570334 would I also integrate kb4562830 or kb4576754 to bring the imagine to 20H2? I am asking if kb4576754 completely replaces kb4562830 in the image building process or do you still use kb4562830 because kb4576754 only contains an upgraded version of Chromium Edge?
I think you are right. I looked inside and there are a lot of differences. Inside kb4562830 you see numerous mentions of "20h2enablement-package", nothing in kb4576754. I looks like kb4576754 is only used for adding/upgrading a newer version of Chromium Edge. I will test it later but I suspect that you would first integrate kb4562830 and then kb4576754 to bring Edge to a new version. Not much point in this as Edge updates have been very frequent.