🖥️ Batch (CMD)
Check "Disable News and Interests Feed" Status (Batch)
Uses reg query to check the current value behind the "Disable News and Interests Feed" tweak.
CheckDisableNewsAndInterestsStatus.bat
@echo off
:: ============================================================
:: CheckDisableNewsAndInterestsStatus.bat
::
:: Checks whether "Disable News and Interests Feed" is currently applied.
:: ============================================================
reg query "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Feeds" /v "ShellFeedsTaskbarViewMode" 2>nul
if %ERRORLEVEL% NEQ 0 (
echo.
echo 'ShellFeedsTaskbarViewMode' is not set (using the Windows default^).
)
pause