@echo off setlocal enabledelayedexpansion pushd %~dp0 for %%a in (%*) do ( set OutFile=%%~na%%~xa jpegtran -copy none -optimize -outfile !OutFile! %%a for %%b in (!OutFile!) do set fileSize=%%~zb if !fileSize! LSS %%~za (copy !OutFile! %%a>nul) del !OutFile! ) popd exit