This page helps you check if Windows Recall is present on your system and, if you want, disable and uninstall it (remove the payload).
In CMD or PowerShell:
Dism /Online /Get-FeatureInfo /FeatureName:Recall
Quick interpretation:
State : Enabled
→ Recall is enabledState : Disabled
→ Recall is disabledFeature name … is unknown
→ Recall is not present on your systemIn CMD:
Dism /Online /Disable-Feature /FeatureName:Recall /Remove
Notes:
/Remove
uninstalls the payload, reducing the chance it reappears without being explicitly reinstalled.Same operation in PowerShell:
Disable-WindowsOptionalFeature -Online -FeatureName "Recall" -Remove
If you used /Remove
and want Recall back:
Dism /Online /Enable-Feature /FeatureName:Recall
If you get a source error, connect to Windows Update or specify a valid /Source
.
Feature name Recall is unknown
→ The feature isn't available on this build/edition.Enable-Feature
→ try without WSUS policies or provide a valid source; also check Windows Update connectivity.