Task manager Has 3 headings, How do i Evaluate what is running only in "Apps"

  • Thread starter Thread starter x38class
  • Start date Start date
X

x38class

Guest
I need to check which apps are running or not running, previously I have used: (Where Program name is the app I want to check)

'Dim prog As New Process
'For Each prog In Process.GetProcesses
' MsgBox(prog.ProcessName)
' If Mid(UCase(prog.ProcessName), 1, Len(UCase(ProgramName))) = UCase(ProgramName) Then
' MsgBox("found")
' End If
'Next

I am checking for "Microsoft Edge", even though I have terminated edge on the screen, the above code shows it still running & indeed it does under the heading "Background processes".

How do I check that it is not running in the top section in Task Manager display for "Apps"

Continue reading...
 
Back
Top