Thumbnails. I wasn't aware that they were generated in "Details" mode;
I've only seen them in "Medium Icons" and larger.
First, check whether the application which deals with them has an option
to control thumbnail generation. If it doesn't, you can modify the
registry keys directly using regedit (it doesn't have a start menu entry,
but can be run by name).
The relevant keys are:
{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1} (image handler)
{E357FCCD-A995-4576-B01F-234630154E96} (thumbnail handler)
They will be found under one or more of:
HKEY_CURRENT_USER\Software\Classes\.cdr\ShellEx
HKEY_LOCAL_MACHINE\Software\Classes\.cdr\ShellEx
HKEY_CURRENT_USER\Software\Classes\<filetype>\ShellEx
HKEY_LOCAL_MACHINE\Software\Classes\<filetype>\ShellEx
where <filetype> is the "Default" value under the keys:
HKEY_CURRENT_USER\Software\Classes\.cdr\ShellEx
HKEY_LOCAL_MACHINE\Software\Classes\.cdr\ShellEx
The value of the above key(s) will be a CLSID (hex digits and dashes
within curly brackets) which identifies an OLE server which can generate
thumbnails for the file type. You can look up CLSIDs under
HKEY_CLASSES_ROOT\CLSID if you want to know the program/DLL to which they
refer.
Deleting the relevant key(s) will disable thumbnail generation for
that file type. You can export a key to a .reg file before deleting it;
running the .reg file will re-instate the key if you decide you want the
thumbnails back.
Use the one under HKEY_LOCAL_MACHINE to change the system-wide setting and
the one under HKEY_CURRENT_USER to change the per-user setting for the
current user.
As well as the above keys, you may find:
HKEY_CLASSES_ROOT\.cdr\ShellEx
HKEY_USERS\<user-id>\Software\Classes\.cdr\ShellEx
HKEY_USERS\<user-id>_Classes\.cdr\ShellEx
HKEY_CLASSES_ROOT\<filetype>\ShellEx
HKEY_USERS\<user-id>\Software\Classes\<filetype>\ShellEx
HKEY_USERS\<user-id>_Classes\<filetype>\ShellEx
Most of the keys are aliases for each other. The real keys are the
ones under:
HKEY_USERS\<user-id>\Software\Classes
HKEY_LOCAL_MACHINE\Software\Classes
HKEY_USERS\<user-id>_Classes is an alias for
HKEY_USERS\<user-id>\Software\Classes.
HKEY_CURRENT_USER is an alias for HKEY_USERS\<user-id> for the current
user.
HKEY_CLASSES_ROOT is a virtual key obtained by merging the per-user
and system-wide versions of the ...\Software\Classes keys (under early
versions of Windows, the real keys were stored here; that had to change
when NT was developed and they needed to support multiple users, so
HKEY_CLASSES_ROOT was "synthesised" for compatibility).