Notifications
Clear all

Windows 11 Recall

1 Posts
1 Users
0 Reactions
18 Views
Frank Schroeder
(@iseetwizard)
Estimable Member Admin
Joined: 5 years ago
Posts: 50
Topic starter  

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.

 

 


   
Quote