|
Hi tailinlinux,
If you want to access windows' command line shell, you need to setup telnet server on your windows machine then connect to that telnet server through your linux shell.
You can also set up SSH server on windows machine and connect to that by using "ssh -l <username_defined_in_windows> <ip_or_hostname>" in linux.
PS: Telnet is not a good way of remote connection, because all credentials are sent over the network in clear text
hope that helps
|