I have been developing an application that connects VB.net platform to Unix Servers and this is done via plink.exe being triggered via command button. Please see below code:
Dim p As New Process
p.StartInfo.RedirectStandardOutput = True 'I reckon this is imperative for redirected output
p.StartInfo.RedirectStandardInput = True 'Same with above
p.StartInfo.UseShellExecute = False
p.StartInfo.CreateNoWindow = True 'to not show the cmd window
p.StartInfo.FileName = Application.StartupPath & "\plink.exe" 'Initialization of plink.exe
p.StartInfo.Arguments = " -ssh 192.10.1.1 " + My.Settings.Username.ToLower + " -pw " + My.Settings.Password.ToLower + "" 'logging in to the Unix Server
'--------------------------------------
p.Start() 'Initiates the process
p.StandardInput.WriteLine("Y")
p.StandardInput.WriteLine("sleep 1")
'-------------------------------------- Running this enclosed command,
' I can see that this reflects in Unix side via "history"
'command on the unix env.
'1. When I use this, only one row of line appears on the Debug Window
Dim myStreamReader As StreamReader = p.StandardOutput()
'Dim myString As String = myStreamReader.ReadLine()
'Console.WriteLine(myString)
'2. When I use this, application hangs due to deadlock and probably
'due to the ReadToEnd() command. My observation is that whenever I turn
'my laptop to hibernate, once I reboot, I see the Unix output that the
'program was initially trying to fetch - seems like due to thread termination
'that's why the deadlock stopped.
'TODO Check for ways to execute without hanging.
Console.WriteLine(myStreamReader.ReadToEnd) 'Here is where the bad things happen.
p.Close()