Hello,
I need to create a batch file to telnet to a unix machine. An essential requirement is to supply my user name and password in the batch file so that the telnet process will not prompt me.
I've been able to supply the machine name and user name like so:
where <machine> is the unix machine name I want and <user> is my user ID.
But I've not been able to put my password in there. Can this be done?
Thanks...
I need to create a batch file to telnet to a unix machine. An essential requirement is to supply my user name and password in the batch file so that the telnet process will not prompt me.
I've been able to supply the machine name and user name like so:
Code:
telnet <machine> -l<user>
But I've not been able to put my password in there. Can this be done?
Thanks...