Chromeのプロセス名は?

HI @gorby

You can try with Get processes activity

Get process will get all the process that are running

The below expression will get all the process name and print them as string or convert the list as string

String.Join(",",listofprocess.AsEnumerable().Select(Function(s) s.ProcessName))

In If Condition you can give the below condition

String.Join(",",listofprocess.AsEnumerable().Select(Function(s) s.ProcessName)).Contains("chrome")

if True-> Kill Process → “chrome”
image

if you want to loop through the proceses

Hope this helps