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. bachru2

    bachru2 MDL Novice

    Nov 8, 2009
    5
    7
    0
    I created wim from 24H2 ver 2.6 default. reporting 2 problem
    1-Although selected defender enable. defender is not working cant start defender and windows security services access denied
    2-Search box is inactive cant type anything.
    if Openshell or StartallBack is installed search function start functioning
    rest everything works smoothly and less than 100 services running
     
  2. sergey130270

    sergey130270 MDL Senior Member

    May 15, 2014
    290
    365
    10
    Removing Client.CoreAI - breaks the search on the taskbar, it is directly responsible for the operation of intelligent search in Windows 11
    Find the line Client.CoreAI in your script and delete it and the taskbar search will work.
    These lines are approximately like this:

    setlocal EnableDelayedExpansion

    If "%RemoveTelemetryApps%"=="1" (
    echo.
    echo.
    echo ============================================================
    echo Remove SystemApps with telemetry from InboxApplications
    echo ============================================================
    echo.
    set "AppxKey=HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Appx\AppxAllUserStore\InboxApplications"
    for %%i in (
    Client.AIX
    Client.CBS
    Client.CoreAI
    ) do (
    for /f %%a in ('reg query "!AppxKey!" /f %%i /k ^| find /i "InboxApplications"') do (
    reg delete "%%a" /f >nul 2>&1
    if "!ERRORLEVEL!"=="0" (
    echo [OK] Removed: %%i from %%a
    ) else (
    echo [ERROR] Failed to remove: %%i from %%a
    )
    )
    )
    )
    endlocal
     
  3. sainfo

    sainfo MDL Addicted

    Dec 6, 2021
    521
    1,135
    30
    #3323 sainfo, Aug 1, 2025 at 17:03
    Last edited: Aug 2, 2025 at 09:00
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. DrakeBond

    DrakeBond MDL Novice

    Oct 28, 2020
    35
    48
    0
    Yes that fixed it for me.
    You are the best. Thank you Very much!