@ECHO OFF
REM Resize the images files in the current directory
REM Extension of the files
SET ext="png"
REM Expected size
SET size="1920x1080"
DIR /b *.%ext% > magick.lst
FOR /F "tokens=1,2 delims=." %%f IN ( magick.lst ) DO (
magick "%%f.%%g" -resize %size% "%%f-resized.%%g" )
DEL magick.lst