Telnet with vb

I looked online but all I could find was things that cost money, is there a way to telnet from your app with out having to buy somthing


Answer this question

Telnet with vb

  • Andrew Lynes

    telnet what do you mean run a process of Telnet can you explain a bit more

  • Matt Jones

    well you can spin up a process of telnet and send it arguments to run with:

    System.Diagnostics.Process.Start("Telnet /args")

    where "args" is the arguments you want to pass to the application.

    you could also redirect input/output/errors to your application using the System.Diagnostics.Process.ProcessStartInfo class

    http://msdn2.microsoft.com/en-us/library/system.diagnostics.processstartinfo.aspx



  • ChangNoi

    Okay think you.

  • Derek Comingore

    I just need to open a telnet connection to a network power adapter and run some commands.

  • Telnet with vb