memstechtips / UnattendedWinstall

Personalized Unattended Answer Files that helps automatically debloat and customize Windows 10 & 11 during the installation process.
MIT License
3.47k stars 397 forks source link

How to Disable Microsoft Recall Feature #166

Closed BlackJoker90 closed 1 week ago

BlackJoker90 commented 1 week ago

For those looking to streamline their deployment configurations and avoid any potential interference from Microsoft Recall, here’s a quick addition to your deployment script that disables the Recall feature automatically. This method uses a RunSynchronous command to execute the necessary DISM command:

<RunSynchronousCommand wcm:action="add">
    <Order>9</Order>
    <Path>cmd.exe /c dism /online /disable-feature /featurename:Recall</Path>
    <Description>Disable Recall Feature</Description>
</RunSynchronousCommand>
memstechtips commented 1 week ago

Hey there, thanks for the effort but it's already being disabled as part of the UWScript.ps1 file that is automatically executed during the Windows Installation. See: https://github.com/memstechtips/UnattendedWinstall/blob/93305192ed6d64e0f5b98a89f447927480285354/autounattend.xml#L1603