Skip to content

Instantly share code, notes, and snippets.

@MobCat
Created December 10, 2023 03:14
Show Gist options
  • Save MobCat/27cbebe1322f019481349830bbadf750 to your computer and use it in GitHub Desktop.
Save MobCat/27cbebe1322f019481349830bbadf750 to your computer and use it in GitHub Desktop.
New windows context menu for removing EXIF data with exiv2
Windows Registry Editor Version 5.00
; adds a "remove EXIF data" right click context menu item for jpg
; You should pre-process your jpg for compression first then use this tool
; when you post the jpg to the internet.
; The ico is optional. But I like it.
[HKEY_CLASSES_ROOT\*\shell\Exif Remove]
"AppliesTo"=".jpg"
"Icon"="C:\\exiv2-0.28.1\\bin\\remove.ico"
[HKEY_CLASSES_ROOT\*\shell\Exif Remove\command]
@="C:\\exiv2-0.28.1\\bin\\exiv2.exe -da rm \"%1\""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment