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
- Open Command Prompt as an administrator.
- To install the Recall feature, type the following command and press Enter:
DISM /Online /Enable-Feature /FeatureName:"Recall"
- To uninstall the Recall feature, type the following command and press Enter:
DISM /Online /Disable-Feature /FeatureName:"Recall"
Using PowerShell Commands
- Open PowerShell as an administrator.
- To install the Recall feature, type the following command and press Enter:
Enable-WindowsOptionalFeature -Online -FeatureName "Recall"
- To uninstall the Recall feature, type the following command and press Enter:
Disable-WindowsOptionalFeature -Online -FeatureName "Recall"
Comments