I have a file invisible.vbs having following script
Set WshShell = WScript.CreateObject("WScript.Shell")
obj = WshShell.Run("e:\abc.bat", 0)
set WshShell = Nothing
abc.bat has following script
:loop
EVENTCREATE /T ERROR /L APPLICATION /ID 100 /D "This is test message."
ping localhost -n 21 > nul
goto loop
Now I want to stop abc.bat manually but Question is HOW?
Go into task manager and end the
cmd.exeprocess.