🖥️ Batch (CMD)
Check "Increase Icon Cache Size" Status (Batch)
Uses reg query to check the current value behind the "Increase Icon Cache Size" tweak.
CheckIncreaseIconCacheSizeStatus.bat
@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