🖥️ Batch (CMD)

Disable Activity Feed / Timeline (Batch)

Disables the Windows Activity Feed / Timeline feature (requires admin). Requires an elevated (Administrator) prompt. Applies the tweak via reg.exe.

By WindowsScripting.com · 614 B
SetDisableActivityFeed.bat
@echo off
:: ============================================================
:: SetDisableActivityFeed.bat
::
:: Disable Activity Feed / Timeline.
:: Disables the Windows Activity Feed / Timeline feature (requires admin). Requires an elevated (Administrator) prompt.
:: ============================================================

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System" /v "EnableActivityFeed" /t REG_DWORD /d "0" /f

if %ERRORLEVEL% EQU 0 (
    echo Disable Activity Feed / Timeline applied.
) else (
    echo Failed to apply tweak. Try running this script as Administrator.
)
pause