@echo off
:: ============================================================
:: CheckIncreaseIconCacheSizeStatus.bat
::
:: Checks whether "Increase Icon Cache Size" is currently applied.
:: ============================================================

reg query "HKEY_CURRENT_USER\Software\Microsoft\Windows\Explorer" /v "Max Cached Icons" 2>nul

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