Hello guys. Can somebody, please, provide download link for pt-br_windows_11_consumer_editions_version_24h2_updated_jan_2025_x64_dvd_7a8e5a29.iso ? in google drive would be great, if not a problem guys.
Today I successfully upgraded a Windows 10 to Windows 11 not compatible with no issues, if you interested After extract the ISO for Windows 11 24H2 : Code: @ECHO OFF TITLE Windows 11 Upgrade COLOR F0 SET _Language=fr-FR PUSHD "%~dp0" IF NOT EXIST setup.exe EXIT ECHO Checking if the language system matched with the upgrader FOR /F "skip=2 tokens=2*" %%a IN ('REG QUERY "HKEY_CURRENT_USER\Control Panel\International" /v "LocaleName"') DO SET "OSLanguage=%%b" IF "%OSLanguage%"=="%_Language%" ( ECHO Checking OK. Now proceed with the upgrader REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\Setup\MoSetup" /v AllowUpgradesWithUnsupportedTPMOrCPU /t REG_DWORD /d 1 setup.exe /Product Server /Compat IgnoreWarning /MigrateDrivers All ) ELSE ( ECHO Language system not matched with the upgrader ECHO Press any keys to exit... pause>nul ) EXIT