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
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: Spoiler 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