@echo off
:: ============================================================
:: CheckDisableActivityFeedStatus.bat
::
:: Checks whether "Disable Activity Feed / Timeline" is currently applied.
:: ============================================================

reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System" /v "EnableActivityFeed" 2>nul

if %ERRORLEVEL% NEQ 0 (
    echo.
    echo 'EnableActivityFeed' is not set (using the Windows default^).
)
pause