⚡ PowerShell 5.1+
Check "Increase Icon Cache Size" Status
Reads the current registry value behind the "Increase Icon Cache Size" tweak so you can confirm whether it's applied.
Test-IncreaseIconCacheSizeStatus.ps1
<#
.SYNOPSIS
Checks whether "Increase Icon Cache Size" is currently applied.
.DESCRIPTION
Reads HKCU:\Software\Microsoft\Windows\Explorer \ Max Cached Icons and reports its current value,
or reports that it isn't set (falling back to the Windows default).
.EXAMPLE
.\Test-IncreaseIconCacheSizeStatus.ps1
#>
[CmdletBinding()]
param()
$regPath = 'HKCU:\Software\Microsoft\Windows\Explorer'
$value = Get-ItemProperty -Path $regPath -Name 'Max Cached Icons' -ErrorAction SilentlyContinue
if ($null -eq $value) {
Write-Host "'Max Cached Icons' is not set at $regPath (using the Windows default)." -ForegroundColor Yellow
} else {
Write-Host "Current value of 'Max Cached Icons': $($value.'Max Cached Icons')" -ForegroundColor Green
}