Get Process Activity is not working fro VM

Get Process Activity from a VM does not work; it only takes local processes.

@Relangi_Siva

Can you be bit elaborate?

Are the processes not shown?

Cheers

My programme is running on a virtual machine. I require information about current VM Running processes.

Hi @Relangi_Siva

Try with this expression

System.Diagnostics.Process.GetProcesses.AsEnumerable().Select(Function(a) a)

If you want process names

System.Diagnostics.Process.GetProcesses.AsEnumerable().Select(Function(a) a.ProcessName)

Regards
Sudharsan