🖥️ Batch (CMD)
Disable Windows Consumer Features (Batch)
Stops Windows from auto-installing suggested consumer apps (requires admin). Requires an elevated (Administrator) prompt. Applies the tweak via reg.exe.
SetDisableConsumerFeatures.bat
@echo off
:: ============================================================
:: SetDisableConsumerFeatures.bat
::
:: Disable Windows Consumer Features.
:: Stops Windows from auto-installing suggested consumer apps (requires admin). Requires an elevated (Administrator) prompt.
:: ============================================================
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\CloudContent" /v "DisableWindowsConsumerFeatures" /t REG_DWORD /d "1" /f
if %ERRORLEVEL% EQU 0 (
echo Disable Windows Consumer Features applied.
) else (
echo Failed to apply tweak. Try running this script as Administrator.
)
pause