🖥️ Batch (CMD)
Check "Disable Windows Consumer Features" Status (Batch)
Uses reg query to check the current value behind the "Disable Windows Consumer Features" tweak.
CheckDisableConsumerFeaturesStatus.bat
@echo off
:: ============================================================
:: CheckDisableConsumerFeaturesStatus.bat
::
:: Checks whether "Disable Windows Consumer Features" is currently applied.
:: ============================================================
reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" 2>nul
if %ERRORLEVEL% NEQ 0 (
echo.
echo 'DisableWindowsConsumerFeatures' is not set (using the Windows default^).
)
pause