@ echo off rem rem Put this batch file in the directory with the jpg files you wish to process. rem This batch file requires an installed copy of exiftools by Phil Harvey. rem Download exiftools windows command line version and rename the file exiftools.exe. rem Place the exiftools.exe file in your windows directory or on your system path. rem rem echo+ echo This batch file works in the current directory. echo+ echo This batch file extracts all XMP meta data field names and current echo field values for sample.jpg and puts them into a text file echo named sample-xmplist.txt. echo+ echo This batch file then displays the text file sample-xmplist.txt. echo+ echo During display press any key to display the next section. echo+ echo+ echo Press CNTRL and C to abort at any time. echo+ pause echo+ echo on exiftool -list -XMP:All sample.jpg >sample-xmplist.txt echo+ type sample-xmplist.txt|more