Turn echo off to suppress showing the command being run, and redirect output to null as @Sico suggested.
@echo off
del /s *.jpg >nul 2>&1
You should see nothing displayed when the bat file is run.
Turn echo off to suppress showing the command being run, and redirect output to null as @Sico suggested.
@echo off
del /s *.jpg >nul 2>&1
You should see nothing displayed when the bat file is run.