Windows 11 24H2 - File Explorer Missing Tabs

entree3k

New Member
Messages
2
Reaction score
0
I have been trying to strip down a Windows 11 iso and after I seem to be missing the tabs in the file explorer. but they are there on a clean install. I have tried multiple times adding back what may be the issue, but nothing seems to work. I have attached my .xml file if anyone is able to solve this issue I would greatly appreciate it.

explorer.png
 

Attachments

Disabling Recall from the Features on Demand screen will result in a W11 24H2 servicing error, which fails to register WindowsAppRuntime.CBS. You end up with a "W10" desktop experience.

Don't worry, run these commands as Admin on your live system:
Code:
DISM /Enable-Feature /FeatureName:"Recall"
shutdown /r /t 10
Code:
DISM /Disable-Feature /FeatureName:"Recall"
shutdown /r /t 10

If you want to safely disable Recall without breaking your desktop, then leave Recall unchanged in the Features screen, and add this Post-Setup (Before logon) command:
Code:
DISM /Disable-Feature /FeatureName:"Recall"
 
Disabling Recall from the Features on Demand screen will result in a W11 24H2 servicing error, which fails to register WindowsAppRuntime.CBS. You end up with a "W10" desktop experience.

Don't worry, run these commands as Admin on your live system:
Code:
DISM /Enable-Feature /FeatureName:"Recall"
shutdown /r /t 10
Code:
DISM /Disable-Feature /FeatureName:"Recall"
shutdown /r /t 10

If you want to safely disable Recall without breaking your desktop, then leave Recall unchanged in the Features screen, and add this Post-Setup (Before logon) command:
Code:
DISM /Disable-Feature /FeatureName:"Recall"
Thank you so much!
 
Will this also work on Windows 11 LTSC?

Disabling Recall from the Features on Demand screen will result in a W11 24H2 servicing error, which fails to register WindowsAppRuntime.CBS. You end up with a "W10" desktop experience.

Don't worry, run these commands as Admin on your live system:
Code:
DISM /Enable-Feature /FeatureName:"Recall"
shutdown /r /t 10
Code:
DISM /Disable-Feature /FeatureName:"Recall"
shutdown /r /t 10

If you want to safely disable Recall without breaking your desktop, then leave Recall unchanged in the Features screen, and add this Post-Setup (Before logon) command:
Code:
DISM /Disable-Feature /FeatureName:"Recall"
 
LTSC 2024 is built on 24H2. I haven't tested it, but there's no reason why LTSC would be different.
 
On WIndows 11 LTSC I get the following error:

Code:
Error: 87

The disable-feature option is unknown.
 
Back
Top