- Official Post
As this function is now live and no-one wants this shit here is a way to disable it again:
PowerShell
$RecallEnabled = Dism /online /Get-FeatureInfo /FeatureName:Recall | findstr /B /C:"State"
If ($RecallEnabled -Match 'State : Enabled') {
DISM /Online /Disable-Feature /Featurename:Recall
} else {
Write-Host "Recall Disabled"
}
Display More
Or alternatively simply this here: