@echo off
set ProcessToDealWith=%1
if "%ProcessToDealWith:~-4%" neq ".exe" goto End
:Monitoring %1
title Monitoring %1...
(tasklist|find "%1" && goto Appeared || goto Monitoring %1)
:Appeared
title Appeared!
set /p DeleteProcessOrNot=Do you want to delete it(them)?(Y/N):
if %DeleteProcessOrNot% equ Y taskkill /im "%1"
if %DeleteProcessOrNot% equ y taskkill /im "%1"
goto End
:End
echo.