Table of Contents

Windows Recall: Check and Uninstall

This page helps you check if Windows Recall is present on your system and, if you want, disable and uninstall it (remove the payload).

Requirements

Check if Recall is installed

In CMD or PowerShell:

Dism /Online /Get-FeatureInfo /FeatureName:Recall

Quick interpretation:

Disable + uninstall (Remove)

In CMD:

Dism /Online /Disable-Feature /FeatureName:Recall /Remove

Notes:

Alternative (PowerShell)

Same operation in PowerShell:

Disable-WindowsOptionalFeature -Online -FeatureName "Recall" -Remove

Reinstall (optional)

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.

Quick troubleshooting