ExifTool Forum

ExifTool => Newbies => Topic started by: prettypixel on November 18, 2018, 05:01:27 AM

Title: Exiftool Windows CLI - Help with simple commands
Post by: prettypixel on November 18, 2018, 05:01:27 AM
I have some experience in using Exiftool from the macOS command line. More recently, I have been using the excellent ExiftoolGUI application. I now wish to use Exiftool within the Windows Command Line. I am able to read metadata of my images, by issuing the command:

C:\Users\Wendy\Desktop\Photos\one.jpg

However, I would now like to write/edit image metadata as follows:

DateTimeOriginal
Geotag

Am I correct in thinking the commands are the same as those I used on macOS, but instead of using single quotes, I need to use double quotes for Windows? Thank you in advance.
Title: Re: Exiftool Windows CLI - Help with simple commands
Post by: Phil Harvey on November 18, 2018, 07:06:49 AM
Yes, the commands are the same in MacOS as Windows.  The only differences are due to the differences in the way the terminal processes the command line.  Double quotes work on Mac, but you need to use single quotes if any argument contains a dollar sign ($).

To geotag an image you should set DateTimeOriginal first, because the geotag feature uses this to look up the position in the GPS track log.

- Phil
Title: Re: Exiftool Windows CLI - Help with simple commands
Post by: prettypixel on November 18, 2018, 07:07:28 AM
Thank you Phil  :)