@echo off
:: ============================================================
:: CheckDisableFeedbackNotificationsStatus.bat
::
:: Checks whether "Disable Feedback Notifications" is currently applied.
:: ============================================================

reg query "HKEY_CURRENT_USER\Software\Microsoft\Siuf\Rules" /v "NumberOfSIUFInPeriod" 2>nul

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