I can't help you with telnet except to give you advice not to use it. SSH is just like telnet, you can get a nice client (putty) that is a glorified command line, and you cna use ssh for many applications too.
Now, to get passwordless login using ssh (which will be secure), you simply need to create a public/private key pair, place the private key in the root user' home directory, in a file called authorized_keys in a subdirectory called .ssh, and once you tell putty to use the public key (that you store on your PC) you have passwordless, secure logons as root.
This may not support your exact requirements, but I think you should consider it, passwordless remote logins = hacked in seconds without any effort whatsoever. If you need to give root access to customers (ie its a product) then you can install the key for each customer in a simple app, even if you don't create a custom key for each customer! BTW, if you don;t have the key, you will be prompted to use the password as usual.