Select a product
- Select a category.
Turn off the display of thumbnails and only display icons.
This policy setting allows you to configure how File Explorer displays thumbnail images or icons on the local computer.
File Explorer displays thumbnail images by default.
If you enable this policy setting, File Explorer displays only icons and never displays thumbnail images.
If you disable or do not configure this policy setting, File Explorer displays only thumbnail images.
Registry Information
| Vendor | Microsoft |
|---|---|
| Product | Thumbnails |
| Category | Windows Explorer |
| Applies to | User Configuration |
| Supported on | Windows Vista |
| Registry Key | [HKCU]SoftwareMicrosoftWindowsCurrentVersionPoliciesExplorer |
| Value Name | DisableThumbnails |
| Type | REG_DWORD |
| Enabled value | 1 |
| Disabled value | 0 |
Registry File (.reg)
Windows Registry Editor Version 5.00
; Enable the policy
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionPoliciesExplorer]
"DisableThumbnails"=dword:00000001
; Disable the policy
[HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionPoliciesExplorer]
"DisableThumbnails"=dword:00000000PowerShell
# Enable the policy
Set-ItemProperty -Path "HKCU:SoftwareMicrosoftWindowsCurrentVersionPoliciesExplorer" -Name "DisableThumbnails" -Value 1 -Type DWord
# Disable the policy
Set-ItemProperty -Path "HKCU:SoftwareMicrosoftWindowsCurrentVersionPoliciesExplorer" -Name "DisableThumbnails" -Value 0 -Type DWord 