Other Applications / Processes Running
This is a C# example of finding all processes that are running with something particular in their name (include System.Diagnostics namespace):-
var Processses = from p in Process.GetProcesses() where p.ProcessName.Contains("x") select p;
