@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