I've been having great success using
exiftool (-ICC_Profile= originalImage.jpg -o fixedImage.jpg)
to fix images that Windows Photo Viewer struggles to open, but it's quite click intensive and requires renaming every file and then moving the fixed image file before starting a new operation.
Is there a command please that I could use with say 100 image files in the folder and have ExifTool apply the ICC_Profile correction to them all whilst retaining the original file name?
Try this:
exiftool -icc_profile= -o %d%f_fixed.%e -ext jpg DIR
This will output the fixed files with "_fixed" added to the file name.
And you can add -r to recurse into contained folders.
- Phil
Worked perfectly thanks Phil!! ;D