Windows Spotlight is a feature that can be affected by various updates and settings. If you are experiencing issues with enabling Windows Spotlight on the lock screen and login screen after the October 2025 updates, here are some steps you can consider:
- Check Group Policy Settings: If your PCs are part of a domain or managed environment, group policies may restrict the use of Windows Spotlight. Ensure that the Group Policy settings allow for Windows Spotlight.
- Use the Settings App: Go to Settings > Personalization > Lock screen and ensure that Windows Spotlight is selected in the "Personalize your lock screen" dropdown.
- Registry Edit: Sometimes, registry settings can interfere with Spotlight. You can check the registry at
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalizationand ensure that there are no settings that disable Windows Spotlight. - Reinstall Spotlight: You can try reinstalling the Spotlight feature by running the following command in PowerShell (as an administrator):
Get-AppxPackage *Microsoft.Windows.Spotlight* | Remove-AppxPackage
Then, reinstall it using:
Get-AppxPackage -allusers Microsoft.Windows.Spotlight | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$_.InstallLocation\AppXManifest.xml"} - Windows Updates: Ensure that your system is fully updated. Sometimes, subsequent updates can fix issues introduced in earlier ones.
If these steps do not resolve the issue, it may be beneficial to check forums or Microsoft support for any known issues related to the October 2025 updates specifically affecting Windows Spotlight.
References: