Hello,
How do I know which applications are running on TASK MANAGEMENT?
I need to know if a particular application is running on the task manager.
I would like to know the mysql process / service name
thank you
Hello,
How do I know which applications are running on TASK MANAGEMENT?
I need to know if a particular application is running on the task manager.
I would like to know the mysql process / service name
thank you
function getprogram()
CFILENAME := "TEST.EXE"
IF ISEXERUNNING( CFILENAME( HB_ARGV( 0 ) ) )
msginfo("Test is running","Title")
SHOWWINDOW( FINDWINDOW( 0, "TEST" ), 9 )
SETFOREGROUNDWINDOW( FINDWINDOW( 0, "TEST" ) )
RETURN NIL
else
msginfo("Test is not running","Opgelet")
ENDIF
return NILMarc, thanks...
I would like to know the name of the mysql service installed on the computer.
GetTasks() // Returns an array with the names of all the active Tasks running in WindowsPatrizio,
Friend, using WINDOWS 7, gettasks () returns me an incomplete list of processes.
I need a complete list so that I can find the name of the MYSQL process installed.
Thanks
You could run this command: tasklist /v /fi "STATUS eq running"
Thanks