How to enable Recall on your Windows 11 PC

 


To install the Recall app via the command line on Windows 11, you can use either DISM or PowerShell commands. Here are the steps for both methods:

Using DISM Commands

  1. Open Command Prompt as an administrator.
  2. To install the Recall feature, type the following command and press Enter:
    DISM /Online /Enable-Feature /FeatureName:"Recall"
    
  3. To uninstall the Recall feature, type the following command and press Enter:
    DISM /Online /Disable-Feature /FeatureName:"Recall"
    

Using PowerShell Commands

  1. Open PowerShell as an administrator.
  2. To install the Recall feature, type the following command and press Enter:
    Enable-WindowsOptionalFeature -Online -FeatureName "Recall"
    
  3. To uninstall the Recall feature, type the following command and press Enter:
    Disable-WindowsOptionalFeature -Online -FeatureName "Recall"

Comments