@echo off title Task Manager V1 echo Start Tasklist? REM ------------------------------------------------------------- SET /P M=Type Selection: IF "%M%"=="yes" GOTO A IF "%M%"=="no" GOTO B :A ping Localhost -n 2 >nul start /max cmd.exe /k ""tasklist" & pause" goto :b rem -------------------------------------------------------------------------- :b cls set /p question= Which program would you like to close: TASKKILL/IM %question% /F pause cls goto :b