🖥️ Batch (CMD)

Disable Windows Spotlight on Desktop (Batch)

Turns off the Windows Spotlight rotating desktop background feature. Applies the tweak via reg.exe.

By WindowsScripting.com · 600 B
SetDisableWindowsSpotlight.bat
@echo off
:: ============================================================
:: SetDisableWindowsSpotlight.bat
::
:: Disable Windows Spotlight on Desktop.
:: Turns off the Windows Spotlight rotating desktop background feature.
:: ============================================================

reg add "HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\CloudContent" /v "DisableSpotlightCollectionOnDesktop" /t REG_DWORD /d "1" /f

if %ERRORLEVEL% EQU 0 (
    echo Disable Windows Spotlight on Desktop applied.
) else (
    echo Failed to apply tweak. Try running this script as Administrator.
)
pause