I got the codr which will open .exe file in my pc,,
But i want code which will help to open .exe file in any other computer which all are connected in LAN ... Anybody can help me?
The code is as follows:
But i want code which will help to open .exe file in any other computer which all are connected in LAN ... Anybody can help me?
The code is as follows:
Code:
Dim startInfo As ProcessStartInfo
Dim pStart As New Process
startInfo = New System.Diagnostics.ProcessStartInfo_ ("notepad.exe")
pStart.StartInfo = startInfo
pStart.Start()
pStart.WaitForExit()
Comment