🖥️ Batch (CMD)
Check "Disable Feedback Notifications" Status (Batch)
Uses reg query to check the current value behind the "Disable Feedback Notifications" tweak.
CheckDisableFeedbackNotificationsStatus.bat
@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