If you know the process name you can use the System.Diagnostics.Process
class to find it.
If you don't know the process name, you can still use the Process class, but
you need to use Process.GetProcesses and loop through each
Process.MainModule.FileName to find the one matching the executable.