Hi,
First of all, I would like to congratulate to Phil for making such a powerful and flexible tool for image analysis, I'm using it on a daily basis for a number of projects on digital image forensics.

From the
exiftool documentation, I found this command that extracts the embedded data corresponding to
ThumbnailImage tag and write to the output file
exiftool -b -ThumbnailImage image.jpg > folder/thumbnail.jpg
However, I have some images that contain thumbnails inside different tags, like
PreviewImage, so I would like to run a single command that extracts
all kinds of thumbnails from a single image and puts them into a specified folder, preferably appending the tag names like
image_ThumbnailImage.jpg,
image_PreviewImage.jpg, etc...
I found also this:
exiftool -a -b -W %d%f_%t%-c.%s -preview:all DIR
but it works on all images in the folder DIR, I couldn't find a way to make it work on a single image while writing thumbnails in a specified folder.
Am I missing something?
Thanks in advance.