Slimdown10 – turn Windows 10 22H2 or LTSC 2021 into classic/legacy Windows

Discussion in 'Windows 10' started by Deleted member 190847, Feb 15, 2023.

  1. Mavericks Choice

    Mavericks Choice MDL Guru

    Aug 5, 2015
    3,538
    14,566
    120
    Can anyone explain the "skipLicense" switch cause have read we cannot install some appx packages ignoring the lic file?
    eg:
    for /f "tokens=1 delims=" %%a in ('dir /o-n /b /a-d "%~dp0UUP\APPX\%%u*.appxbundle" 2^>nul') do (
    ECHO %%a
    "%DISM11%" /English /quiet /Image:"%~dp0mount" /Add-ProvisionedAppxPackage /PackagePath:"%~dp0UUP\APPX\%%a" /SkipLicense
    )
     
  2. SunLion

    SunLion MDL Addicted

    May 11, 2011
    956
    2,916
    30
    As @Carlos Detweiller said, the keys must follow the pattern
    I believe that, to comply with the HKCR, they should always have "Classes" in their composition.

    See the attached illustrative images.
     

    Attached Files:

  3. sainfo

    sainfo MDL Senior Member

    Dec 6, 2021
    328
    655
    10
    #2643 sainfo, Apr 11, 2025 at 15:40
    Last edited: Apr 11, 2025 at 20:43
    For now I'll leave it like this, I'll test it and check:
    Code:
    
    echo.
    echo.
    ECHO ============================================================
    echo Hide Side Folders in Explorer
    ECHO ============================================================
    ::Music
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{1CF1260C-4DD0-4ebb-811F-33C572699FDE}" /f
    ::Downloads
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{374DE290-123F-4565-9164-39C4925E467B}" /f
    ::Pictures
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{3ADD1653-EB32-4cb0-BBD7-DFA0ABB5ACCA}" /f
    ::Videos
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{A0953C92-50DC-43bf-BE83-3742FED03C9C}" /f
    ::Documents
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{A8CDFF1C-4878-43be-B5FD-F8091C1C60D0}" /f
    ::Desktop
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}" /f
    ::Gallery
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{e88865ea-0e1c-4e20-9aa6-edcd0212c87c}" /f
    ::Home
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{f874310e-b6b7-47dc-bc84-b9e6b38f5903}" /f
    ::Removing the Indexing Options applet                                    
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Classes\CLSID\{87D66A43-7B11-4A28-9811-C86EE395ACF7}" /f
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Classes\Wow6432Node\CLSID\{87D66A43-7B11-4A28-9811-C86EE395ACF7}" /f
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel\NameSpace\{87D66A43-7B11-4A28-9811-C86EE395ACF7}" /f
    "%~dp0tools\%HostArchitecture%\NSudo.exe" -U:T -P:E -UseCurrentConsole -Wait reg delete "HKLM\TK_SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel\NameSpace\{87D66A43-7B11-4A28-9811-C86EE395ACF7}" /f
    
    
    p.s. By the way, 26100.3902 has already appeared. Again, you have no time for rest, you only dream of peace ...
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. siliconbeaver

    siliconbeaver MDL Member

    Apr 29, 2022
    171
    62
    10
    this weekend I did download. its build version 26100.1742.
    Am I missing anything? where to obtain 3902.

    Index : 1
    Name : Windows 11 Home
    Description : Windows 11 Home
    Size : 18,727,965,088 bytes
    WIM Bootable : No
    Architecture : x64
    Hal : <undefined>
    Version : 10.0.26100
    ServicePack Build : 1742 <-- build version
    ServicePack Level : 0
    Edition : Core
    Installation : Client
    ProductType : WinNT
    ProductSuite : Terminal Server
    System Root : WINDOWS
    Directories : 25269
    Files : 112116
    Created : 9/5/2024 - 9:20:49 PM
    Modified : 9/5/2024 - 10:06:58 PM
    Languages :
    en-US (Default)

     
  5. sainfo

    sainfo MDL Senior Member

    Dec 6, 2021
    328
    655
    10
    #2645 sainfo, Apr 12, 2025 at 19:26
    Last edited: Apr 12, 2025 at 19:40
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. siliconbeaver

    siliconbeaver MDL Member

    Apr 29, 2022
    171
    62
    10
    Thanks,

    I had forgotten this basic Rule. :D