Skip to main content

Reset Windows Spotlight Windows 11 May 2026

foreach ($regPath in $regPaths) if (Test-Path $regPath) Remove-ItemProperty -Path $regPath -Name "RotatingLockScreen*" -ErrorAction SilentlyContinue Remove-ItemProperty -Path $regPath -Name "SubscribedContent-*" -ErrorAction SilentlyContinue

# 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 : 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 reset windows spotlight windows 11

$regPaths = @( "HKCU:\Software\Microsoft\Windows\CurrentVersion\Lock Screen", "HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" ) reset windows spotlight windows 11