Hello, thanks for your suggestion.
This solution was working with the old versions of spotlight, but does not work with the modifications made by Microsoft end of Oktober.
Best regards.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
Since October 2025 Windows updates, it's no more possible to enable spotlight on lock screen and login screen. This occurs on my 3 PC's. The standard well known tips to repair spotlight are not working anymore.
Thanks if somebody has found a solution.
Kind regards.
Hello, thanks for your suggestion.
This solution was working with the old versions of spotlight, but does not work with the modifications made by Microsoft end of Oktober.
Best regards.
Still awaiting a new update to solve the issue.
Hi There,
This isn’t an isolated issue other users have reported the same after the October update. This usually fix by installing new windows update. Let me know how it goes, Happy to help!
Hello all,
I managed to fix this by re-registering the CloudExperienceHost package as well (possibly along with the ContentDeliveryManager package):
# Re-register CloudExperienceHost
Get-AppxPackage -AllUsers Microsoft.Windows.CloudExperienceHost | ForEach-Object { Add-AppxPackage -DisableDevelopmentMode -Register ($_.InstallLocation + "\AppXManifest.xml") }
# Re-register ContentDeliveryManager
Get-AppxPackage -AllUsers Microsoft.Windows.ContentDeliveryManager | ForEach-Object { Add-AppxPackage -DisableDevelopmentMode -Register ($_.InstallLocation + "\AppXManifest.xml") }
I am not sure if the latter is needed, but after these steps, files were getting downloaded to the Assets folder and Spotlight started working.
For completeness: I got triggered by an event in the Application Log of Windows with Source = ESENT, Event ID = 643, Task Category = "Table/Column/Index Definition" and the following message contents:
DllHost (24952,D,50,0) WebPlatStorage: Out of date NLS sort version detected on the database 'C:\Users\username\AppData\Local\Packages\Microsoft.Windows.CloudExperienceHost_cw5n1h2txyewy\AppData\CacheStorage\CacheStorage.edb' for Locale 'en-US', index sort version: (SortId=00000001-57ee-1e5c-00b4-d0000bb1e11e, Version=0006030500060305), current sort version: (SortId=00000001-57ee-1e5c-00b4-d0000bb1e11e, Version=0006050200060502).
Hope this helps someone.
Tijl
AI answer
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:
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization and ensure that there are no settings that disable Windows Spotlight.Get-AppxPackage *Microsoft.Windows.Spotlight* | Remove-AppxPackage Get-AppxPackage -allusers Microsoft.Windows.Spotlight | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$_.InstallLocation\AppXManifest.xml"}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: