我想问是否可以从其公司名称而不是其名称中获取正在运行的进程
例子 :
Dim Security() As Process = System.Diagnostics.Process.GetProcessesByName("firefox")
For Each proc As Process In Security
proc.Kill()
Next
在此示例中,我通过其名称获取进程,即 firefox,但我想从“Mozilla Corporation”名称中获取 firefox 进程
在此先感谢您,请提供带有代码的答案