1. ch100

    ch100 MDL Addicted

    Sep 11, 2016
    841
    704
    30
  2. jim_p

    jim_p MDL Senior Member

    Dec 11, 2013
    459
    173
    10
    How can I tell if someone is using the N version of windows 10? Some variable or powershell script maybe? Is it shown on winver?
     
  3. shhnedo

    shhnedo MDL Expert

    Mar 20, 2011
    1,836
    2,446
    60
    Yes.
     
  4. LM

    LM MDL Novice

    Sep 20, 2012
    29
    10
    0
    e2e543ef566d657d57dba8f1b12fa20c0166845d *pt-pt_windows_10_consumer_editions_version_21h1_updated_aug_2021_x64_dvd_ae339133.iso

    Please
     
  5. Clusterhead

    Clusterhead MDL Novice

    Mar 29, 2013
    34
    29
    0
    Now:
    Cumulative Update Preview for Windows 10 Version 21H2 (19044.1202)
    KB5005101
     
  6. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,844
    104,326
    450
  7. EaglePC

    EaglePC MDL Expert

    Feb 13, 2012
    1,255
    524
    60
    does 19044.xxx also show annoying notification upgrade to Windows 11 ?
     
  8. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,844
    104,326
    450
    Yes (at least 19043.xxxx did), on my second system it even offered in the Release Preview channel, with a link to the insiderpchealthcheck website, from which i got this info:
    https://forums.mydigitallife.net/th...hannel-co_release.83722/page-221#post-1685848

    And this was on the same system when it got offered the first time:
    https://forums.mydigitallife.net/th...hannel-co_release.83722/page-214#post-1685184
    (for some weird reason it doesn't get the 21H2 EP offered:D)
     
  9. EaglePC

    EaglePC MDL Expert

    Feb 13, 2012
    1,255
    524
    60
    rrr MS got us MS wants to own us just like the politicians
     
  10. maddogster

    maddogster MDL Senior Member

    Mar 23, 2015
    321
    113
    10
    what next MS has kill switch like samsung tv to disable our hardware :p:cool::D:eek:
     
  11. damianfox

    damianfox MDL Senior Member

    Jan 23, 2011
    423
    310
    10
    My 19044.1147 doesn't do this. But than again I disable notifications in Global Policy.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. SAM-R

    SAM-R MDL Guru

    Mar 21, 2015
    5,918
    5,758
    180
    & that is old Build Try 19044.1202
     
  13. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,844
    104,326
    450
    What build are you on and what build ISO are you using to perform the inplace upgrade?
     
  14. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    From 1909 18363.418 Pro x64 to 1909 18363.1734 Pro x64.
     
  15. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,844
    104,326
    450
    #8300 Enthousiast, Sep 1, 2021
    Last edited: Sep 1, 2021
    (OP)
    Take a look at this post, i made a tool based on it (with help from @abbodi1406 ) but i never uploaded it and now a lot of time has passed, hard time to find it on my drives:(
    https://forums.mydigitallife.net/threads/windows-10-hotfix-repository.57050/page-448#post-1544947
    +
    https://forums.mydigitallife.net/threads/windows-10-hotfix-repository.57050/page-448#post-1544962

    I found my tool, checking it.

    Script (needs Nsudo files, a 18362.1 x86/x64 multi-arch install.wim (correct language and, edition)):

    Folder setup:
    Code:
    |   FiX_Abbodi_AiO.cmd
    |   install.wim (x86/x64 in this order)
    |   README.txt
    
    \---Bin
        +---Win32
        |       NSudo.exe
        |       NSudo.json
        |       NSudoC.exe
        |       NSudoG.exe
        |
        \---x64
                NSudo.exe
                NSudo.json
                NSudoC.exe
                NSudoG.exe
    
    Code:
    @echo off
    
    REM change wording if needed..
    TITLE FiX_Abbodi_AiO
    echo Checking for admin...
    
    reg query HKU\S-1-5-19 1>nul 2>nul && goto :gotAdmin
    powershell -noprofile -exec bypass -c "start cmd -ArgumentList '/c \""""%~f0""" \"' -verb runas" & exit /b
    
    :gotAdmin
    CD /D "%~dp0"
    cls
    
    echo Detecting OS architecture...
    echo.
    reg Query "HKLM\Hardware\Description\System\CentralProcessor\0" | find /i "x86" > NUL && ( set "arch=x86" ) || ( set "arch=x64" )
    
    echo Mounting 18362.1 install.wim...
    echo.
    md "%SystemDrive%\Fix_Mount"
    if "%arch%"=="x86" (
    dism /Mount-Image /ImageFile:"install.wim" /Index:1 /MountDir:"%SystemDrive%\Fix_Mount" /ReadOnly
    ) else (
    dism /Mount-Image /ImageFile:"install.wim" /Index:2 /MountDir:"%SystemDrive%\Fix_Mount" /ReadOnly
    )
    echo.
    if "%arch%"=="x86" (
    set "_nsudo=%~dp0bin\Win32\NSudo.exe"
    ) else (
    set "_nsudo=%~dp0bin\x64\NSudo.exe"
    )
    echo.
    echo Copying missing components...
    %_NSudo% -U:T -P:E -Wait cmd.exe /c robocopy %SystemDrive%\Fix_Mount\Windows\WinSxS %SystemRoot%\WinSxS /R:0 /W:0 /NFL /NDL /J /S /DCOPY:DAT /XC /XN /XO /XX /XF migration.xml pending.xml poqexec.log /XD Backup Catalogs FileMaps InstallTemp ManifestCache Temp
    echo.
    echo Import the components registry keys...
    echo.
    reg query "HKLM\COMPONENTS" >nul 2>&1 && ( net stop trustedinstaller >nul 2>&1 &reg unload HKLM\COMPONENTS >nul 2>&1 )
    reg load "HKLM\COMPONENTS" "%SystemDrive%\Fix_Mount\Windows\System32\Config\COMPONENTS"
    reg export "HKLM\COMPONENTS\CanonicalData\Deployments" "%temp%\Deployments.reg"
    reg export "HKLM\COMPONENTS\DerivedData\Components" "%temp%\Components.reg"
    reg unload "HKLM\COMPONENTS"
    reg load "HKLM\COMPONENTS" "%SystemRoot%\System32\Config\COMPONENTS"
    reg import "%temp%\Deployments.reg"
    reg import "%temp%\Components.reg"
    for /f "tokens=* delims=" %%i in ('reg query "HKLM\COMPONENTS\DerivedData\VersionedIndex" ^| findstr /i "VersionedIndex"') do reg delete "%%i" /f
    reg unload "HKLM\COMPONENTS"
    del /f /q "%temp%\*.reg"
    echo.
    echo Run DISM to check and restore health (and rebuild VersionedIndex registry key)...
    echo.
    Dism /Online /Cleanup-Image /RestoreHealth /Source:"%SystemDrive%\Fix_Mount\Windows" /LimitAccess
    echo.
    echo Unmount install.wim...
    echo.
    dism /Unmount-Image /MountDir:"%SystemDrive%\Fix_Mount" /Discard
    rd /s /q "%SystemDrive%\Fix_Mount"
    
    pause