Open .exe on LAN

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • vabh
    New Member
    • Feb 2008
    • 9

    Open .exe on LAN

    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:
    Code:
                      Dim startInfo As ProcessStartInfo
                      Dim pStart As New Process
                      startInfo = New System.Diagnostics.ProcessStartInfo_            ("notepad.exe")
                     pStart.StartInfo = startInfo
                     pStart.Start()
                     pStart.WaitForExit()
    Last edited by jhardman; Apr 7 '08, 08:20 PM. Reason: put code in code tags. Please note button marked - #, fixed title
  • jhardman
    Recognized Expert Specialist
    • Jan 2007
    • 3405

    #2
    What language are you using? The code you posted definitely does not look like VBScript or Javascript, and those are the only languages in which ASP can be written.

    Jared

    Comment

    Working...