When I open a command prompt manually and type the following command I get a response from the server I am pinging.
telnet <server> <port>
When I open the command prompt with Ruby, using the following command, and run the same telnet command above, I get ''telnet' is not recognized as an internal or external command, operable program or batch file.'
Ruby command:
system('start cmd.exe)
It opens the prompt fine, but the command itself is not working, and I am not sure to why that is.