Forrest logo
back to the rpcclient tool

rpcclient:tldr:0e250

rpcclient: Create a new user in the domain.
$ rpcclient $> createdomuser ${username}
try on your machine

The command rpcclient $> createdomuser ${username} is used to create a user account in a Windows domain using the rpcclient tool.

Here is a breakdown of the command and its components:

  • rpcclient: This is a client tool used to execute remote procedure calls (RPCs) on Windows-based systems. It provides a command-line interface to interact with the RPC services, such as domain controllers.
  • $>: This is a prompt indicating that the following commands will be executed within the rpcclient tool.
  • createdomuser: This is the rpcclient command used to create a user account in the domain.
  • ${username}: This is a variable that needs to be replaced with the desired username of the user account that you want to create. For example, if you want to create a user account with the username "johnsmith," you would replace ${username} with johnsmith.

In summary, the command rpcclient $> createdomuser ${username} is used to create a user account in a Windows domain using rpcclient, with the specific username provided.

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 rpcclient tool