🖥️ Batch (CMD)
Disable News and Interests Feed (Batch)
Hides the taskbar News and Interests / Widgets feed. Applies the tweak via reg.exe.
SetDisableNewsAndInterests.bat
@echo off
:: ============================================================
:: SetDisableNewsAndInterests.bat
::
:: Disable News and Interests Feed.
:: Hides the taskbar News and Interests / Widgets feed.
:: ============================================================
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Feeds" /v "ShellFeedsTaskbarViewMode" /t REG_DWORD /d "2" /f
if %ERRORLEVEL% EQU 0 (
echo Disable News and Interests Feed applied.
) else (
echo Failed to apply tweak. Try running this script as Administrator.
)
pause