Reset Windows Spotlight Windows 11 Guide
Save as Reset-WindowsSpotlight.ps1 :
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] reset windows spotlight windows 11
REM Reset registry echo Resetting registry settings... reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\Lock Screen" /v RotatingLockScreenEnabled /f >nul 2>&1 reg delete "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v RotatingLockScreenEnabled /f >nul 2>&1 Save as Reset-WindowsSpotlight
echo. echo Done! Please restart your computer. timeout /t 5 /nobreak >nul exit Save as Advanced-Reset-WindowsSpotlight.ps1 : Please restart your computer
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 $registryPaths.Keys) if (Test-Path $regPath) foreach ($property in $registryPaths[$regPath]) if ($property -like " - ") Get-ItemProperty -Path $regPath else Remove-ItemProperty -Path $regPath -Name $property -ErrorAction SilentlyContinue