Guest User

Untitled

a guest
Dec 16th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. @echo off
  2. chcp 65001 2>nul >nul
  3.  
  4. set "FILE_INPUT=%~s1"
  5. set "FILE_BCKUP=%~1.backup"
  6.  
  7. :: backup
  8. call copy /b /y "%FILE_INPUT%" "%FILE_BCKUP%" 2>nul >nul
  9.  
  10. call exiftool -overwrite_original_in_place -progress -verbose -preserve -ignoreMinorErrors -XMPToolkit="" -all="" -trailer:all="" "%FILE_INPUT%"
  11.  
  12. pause
  13.  
  14. exit
Add Comment
Please, Sign In to add comment