> For the complete documentation index, see [llms.txt](https://docs.devolutions.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.devolutions.net/pam/es/knowledge-base/how-to-articles/elevate-management-tools-with-a-privileged-account.md).

# Elevar herramientas de gestión con una cuenta privilegiada

Descubra cómo gestionar herramientas con privilegios elevados utilizando el tipo de sesión PowerShell Remote en Remote Desktop Manager. Establece una conexión con un host remoto a través de ps-sessions con credenciales diferentes.

### Requisito previo

* El [***oyente HTTPS de WinRM***](https://learn.microsoft.com/en-us/windows/win32/winrm/installation-and-configuration-for-windows-remote-management) está configurado correctamente en la estación de trabajo de destino.
* Se utiliza un ***certificado SSL válido*** con la huella digital adecuada.

#### Configurar una **entrada PowerShell terminal (Remote)**

1. Abra **Remote Desktop Manager.**
2. Haga clic en **Nueva entrada** y busque **PowerShell terminal (Remote)**.
3. Seleccione **PowerShell terminal (Remote)** como tipo de sesión.
4. Introduzca el nombre, el host y las credenciales.

   <div data-gb-custom-block data-tag="hint" data-style="info" class="hint hint-info"><p>Puede configurar varios hosts y seleccionar el destino al iniciar la sesión.</p></div>
5. Las credenciales elevadas pueden ser unas personalizadas de AD, una cuenta de gestión de accesos privilegiados o cualquier otra entrada de credenciales de Remote Desktop Manager.
6. Para elevar los permisos, la sesión debe configurarse para ***ejecutarse como administrador***.
7. Vaya a la pestaña **Ejecutar como**.
8. Active la opción **Ejecutar como administrador**. Tenga en cuenta que se utiliza el puerto 5986 - HTTPS (WinRM) al ejecutar la entrada de PowerShell como administrador.

   ![](https://cdnweb.devolutions.net/docs/RDMW6039_2025_1.png)
9. Haga clic en ***Añadir*** para guardar la entrada de PowerShell.
10. Ejecute la entrada de PowerShell.
11. Para confirmar que la sesión se está ejecutando con una cuenta privilegiada, utilice los siguientes comandos de PowerShell:

* Comprobar el usuario actual

```powershell
whoami
```

* Verificar los permisos elevados

```powershell
$currentPrincipal = New-Object Security.Principal.WindowsPrincipal([Security.Principal.WindowsIdentity]::GetCurrent())
$currentPrincipal.IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.devolutions.net/pam/es/knowledge-base/how-to-articles/elevate-management-tools-with-a-privileged-account.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
