Forrest logo
back to the rdesktop tool

rdesktop:tldr:e6472

rdesktop: Simple Examples.
$ rdesktop -u Administrator -p passwd123 192.168.1.111:3389
try on your machine

The command "rdesktop -u Administrator -p passwd123 192.168.1.111:3389" is used to open a remote desktop session with a Windows computer located at IP address 192.168.1.111, using the Remote Desktop Protocol (RDP) on port 3389.

Here is a breakdown of the components in the command:

  • "rdesktop" is the name of the command-line tool used to connect to remote Windows computers using RDP.
  • "-u Administrator" specifies the username to be used for authentication, in this case, "Administrator".
  • "-p passwd123" provides the password to authenticate the specified username. In this example, the password is set as "passwd123".
  • "192.168.1.111" is the IP address of the remote Windows computer that you want to connect to.
  • ":3389" specifies the port number, in this case, 3389, which is the default port for RDP connections on Windows.

Overall, this command establishes an RDP session with a remote Windows computer using the specified username, password, and IP address.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the rdesktop tool