I recently did an in-place upgrade from Windows 10 22H2 to Windows 11 Enterprise 24H2 (26100.4351) on two Lenovo boxes. In both cases, the search index was wiped by the process and indexing restarted from scratch. On my older box (a 2020 X1), indexing is progressing at a reasonable speed, between a few hundred and a few thousand entries added to the index per minute. On my newer box (a high-end 2025 P1G7, Intel Ultra 9 185H/2300MHz/16 Cores, NVIDIA GPU, 32GB RAM, 1TB SSD), indexing is going at a snail pace--often only one item per minute, maxing out at a few dozen per minute.
I'm on the latest Office 365 (Version 2507 Build 16.0.19009.20000). There are a few hundred thousand items in my Outlook store, which is the only thing that should be indexed. All mail is stored locally/offline, and Outlook shows all folders are 100% synced.
So far I've tried:
- Windows Update
- Lenovo Update
- Intel Update
- disable index backoff via registry key, reboot
New-Item -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search” -Force | Out-Null
New-ItemProperty -Path “HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search” -Name “DisableBackoff” -Value 1 -PropertyType DWORD -Force
- rebuilding index from scratch, again
-
sfc /scannow
-
dism /Online /Cleanup-image /Restorehealth
- deleting registry key
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Search\PluginResourceData], reboot
- removing everything from indexing other than Outlook email
- downloading latest Windows 11 Enterprise ISO, mounting, running
setup.exe with option to keep applications and files in place
- attempting to reset search this way:
dism /online /Disable-Feature /FeatureName:"SearchEngine-Client-Package"
reboot
rm C:\programdata\Microsoft\Search
reboot
dism /online /Enable-Feature /FeatureName:"SearchEngine-Client-Package"
reboot
None of these seem to have any impact on glacial indexing speed.
Anything else I can try to fix or at least further diagnose what is going on?