How does one make a temporary telnet responder with PowerShell? [closed]
I'm looking into making a temporary Telnet server so I can remotely test network connectivity and data transmission integrity. I don't have the authority to install the telnet server Windows Feature.
Don't make a telnet server.
Install OpenSSH and you'll have a secure version of telnet which you can use to run remote commands - all without having to write a single line of code.
Check out this thread of mine, titled How can I connect to a Windows server using a Command Line Interface?
, which might be helpful in accomplishing what you're really trying to do.