Mega Code Archive

 
Categories / VB.Net / Windows System
 

Get a process on a remote computer, using the process id

Imports System Imports System.Diagnostics Imports System.ComponentModel Class MyProcess    Shared Sub Main()              Dim remoteById As Process = Process.GetProcessById(2345, "myComputer")    End Sub End Class