> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectreal.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# rconsolename

> Sets the current Windows console window title . The first argument must be a string and is checked before the console existence check. If no console window exists after the string check succeeds, the call returns without doing anything.

<div className="real-function-page">
  ```lua theme={null}
  rconsolename(text: string)
  ```

  ## Aliases

  * `consolename`
  * `rconsolesettitle`
  * `consolesettitle`

  ## Arguments

  <ParamField path={"text"} type={"string"} required>
    String passed to Windows console title update as the console window title.
  </ParamField>

  ## Example

  Set the current Windows console window title.

  ```lua theme={null}
  rconsolecreate()
  rconsolename("Real Console")
  ```
</div>
