Reset Windows Spotlight Windows 11 May 2026
# Run these additional commands in PowerShell as Admin DISM /Online /Cleanup-Image /RestoreHealth sfc /scannow Get-AppxPackage -AllUsers | Where-Object $_.Name -like "*ContentDeliveryManager*" | Reset-AppxPackage The PowerShell scripts provide the most thorough reset with error handling and backup capabilities. The batch file is quickest for basic reset needs.
Windows Registry Editor Version 5.00 ; Reset Windows Spotlight Settings [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager\RotatingLockScreen] [-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\LockScreen\Spotlight]
@echo off title Reset Windows Spotlight - Windows 11 echo Resetting Windows Spotlight... echo. REM Stop services net stop WpnService /y >nul 2>&1 net stop LicenseManager /y >nul 2>&1 reset windows spotlight windows 11
Write-Host "`nWindows Spotlight has been reset!" -ForegroundColor Green Write-Host "Please sign out and sign back in, or restart your computer." -ForegroundColor Cyan Write-Host "Then go to Settings > Personalization > Lock screen and select 'Windows Spotlight' again." -ForegroundColor Cyan
foreach ($regPath in $regPaths) if (Test-Path $regPath) Remove-ItemProperty -Path $regPath -Name "RotatingLockScreen*" -ErrorAction SilentlyContinue Remove-ItemProperty -Path $regPath -Name "SubscribedContent-*" -ErrorAction SilentlyContinue # Run these additional commands in PowerShell as
# Reset Windows Spotlight on Windows 11 # Run as Administrator Write-Host "Resetting Windows Spotlight..." -ForegroundColor Cyan Stop-Service -Name WpnService, LicenseManager -Force -ErrorAction SilentlyContinue 1. Clear Spotlight cache files $spotlightPaths = @( "$env:LOCALAPPDATA\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets", "$env:LOCALAPPDATA\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\Settings", "$env:USERPROFILE\AppData\Local\Microsoft\Windows\Spotlight" )
# Right-click the .ps1 file > Run with PowerShell # Or run from an elevated PowerShell: Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser .\Reset-WindowsSpotlight.ps1 Save as Reset_Spotlight.bat : &1 net stop LicenseManager /y >
Set-ItemProperty -Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" ` -Name "RotatingLockScreenEnabled" -Value 1 -Type DWord -Force
