Chromeのプロセス名は?

プロセスを強制終了アクティビティでChromeを終了させる際のプロセス名は
”Chrome”で良いのでしょうか?
また、DOSコマンドで、プロセス名を調べる際のコマンドが分かる方、教えてください。

出先からですみません

アクティビティに、プロセスを取得っての顔あります。それをprosses型のforeachで、.Processnaneで、名前は取得できます

HI @gorby

Check out the Thread

Regards
Gokul

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