Components of new GUI of Explorer.exe in Windows 11

No, it's still a Windows bug. There are other known DISM issues with enabling WMIC or VBScript Features in 24H2.

To keep the normal File Explorer, you will have to run a DISM command to disable Recall from Post-Setup (Before logon):
Code:
dism /online /disable-feature /featurename:recall
shutdown /r /t /d 5

View attachment 12974

Because there's a forced restart after the DISM command, these two lines must be the last two commands called from (Before logon).
Otherwise any lines following them will be ignored, since SetupComplete.cmd doesn't resume unfinished commands after a reboot.



View attachment 12975

Hopefully MS will address the DISM bugs in a future SSU Update, and we can return to using the normal NTLite way to disable Features.
 
Disabling Recall offline (or before specialize unattend phase) cause "Microsoft.WindowsAppRuntime.CBS" appx registration to fail, which somehow affect the new FileExplorer

worth noting that MicrosoftWindows.Client.AIX is the only system app that explicitly have Microsoft.WindowsAppRuntime.CBS as PackageDependency
 
Back
Top