As this function is now live and noone wants this shit here is a way to disable it again:
$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" }
Or alternatively simply this here:
Disable-WindowsOptionalFeature -Online -FeatureName "Recall" -Remove.