Is there any recommended way to remove/disable both Copilot and Recall from Win11 LTSC 2024 without breaking the system?
I saw that Recall is featured under Integrate/Updates/Recall (Feature Pack) but is it safe (even sufficient) to remove it from this place
or is it better to leave it just there and use DISM to disable in a post-setup step?
And what about Copilot? How to get rid of this one properly now?
Thanks!
I saw that Recall is featured under Integrate/Updates/Recall (Feature Pack) but is it safe (even sufficient) to remove it from this place
or is it better to leave it just there and use DISM to disable in a post-setup step?
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:
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:
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...
And what about Copilot? How to get rid of this one properly now?
Thanks!