http://chrisjwarwick.wordpress.com/2011/10/31/reading-and-changing-exif-photo-times-with-powershell/
Is a 3 part series that shows how someone else did the same thing. My simple steps were:
- Download the ExifDateTime.ps1 script
- Start a powershell window
- Make sure you've run Set-ExecutionPolicy RemoteSigned and cleared the "remote" property to allow the script to be run with File > Properties
- Run command
- import-module "./ExifDateTime.ps1"
- gci IMG*.jpg | Update-ExifDateTaken -Offset '-0:49:00' -PassThru|ft Path, ExifDateTaken
This fixes the times of all the IMG*.jpg files in my directory.
Later, I found there are other solutions out there if you search for Exif Date Time. In particular, I found ExifTool that allows a similar command that changes the time offset for pictures.
No comments:
Post a Comment