Paul!
...I can't talk to exiftool, but I use jhead to rename files to "yyyy-dd-mm hh.mm.ss" format - jhead appends an 'a', 'b', 'c', etc to files with the same time stamp...
I grabbed the latest available OS/2 version of jhead, and while it won't be able to toss the EXIF info into the extended attributes the way exiftool does, I figured I'd give the file rename function a try.
Alright, so of all things, I'm literally stuck on passing the correct parms to the program. As per the jhead's on-line reference page I attempted to use the following CLI : "jhead -n%Y%m%d-%H%M%S test*.JPG" on the following files (only intending for the test*.jpg files to be processed):
12-25-16 1:24p 12135873 21048 2016-12-11_12-48-07.JPG
12-25-16 1:24p 11492426 21048 2016-12-11_12-48-11.JPG
12-25-16 1:24p 11435120 21048 2016-12-11_12-48-12.JPG
12-27-16 8:50a 12135873 19714 IMGP2807.JPG
12-27-16 8:50a 11712403 19714 IMGP2808.JPG
12-27-16 8:50a 11645929 19714 IMGP2809.JPG
12-27-16 8:50a 11492426 19714 IMGP2810.JPG
12-27-16 8:50a 11270096 19714 IMGP2811.JPG
12-27-16 8:50a 11435120 19714 IMGP2812.JPG
12-29-16 9:47a 12135873 19726 test2807.JPG
12-27-16 8:50a 11712403 19714 test2808.JPG
12-27-16 8:50a 11645929 19714 test2809.JPG
12-27-16 8:50a 11492426 19714 test2810.JPG
12-27-16 8:50a 11270096 19714 test2811.JPG
12-27-16 8:50a 11435120 19714 test2812.JPG
...instead of a result I get the following output:
Error : No such file
in file 'test*.JPG'
So as the on-line page suggested, the single '%' may confuse the Win systems and they suggest to use double '%%', which is what I tried as well...no luck....what am I missing? I am guessing it's something trivial....lol!