> 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/rdm/es/knowledge-base/troubleshooting-articles/wmi-troubleshooting.md).

# Solución de problemas de WMI

{% hint style="info" %}
Tenga en cuenta que las herramientas remotas en sesiones RDP no funcionarán en Remote Desktop Manager si no dispone de WMI. Consulte esta [guía sobre WMI remoto](https://msdn.microsoft.com/en-us/library/aa389290.aspx).
{% endhint %}

En nuestro entorno, básicamente ejecutamos winrm quickconfig en todas nuestras máquinas. Para las que no están unidas a un dominio, también las añadimos a la lista TrustedHosts. Para las máquinas que no están unidas a un dominio, existe una dificultad añadida. Si utiliza la dirección IP en lugar del nombre de host, esto plantea sin duda algunos retos.

Una buena estrategia es conseguir que remoteWMI funcione y, después, integrarlo en Remote Desktop Manager. Nos gusta utilizar [WMIC](https://msdn.microsoft.com/en-us/library/aa394531\(v=vs.85\).aspx).

{% hint style="info" %}
Contacte con nosotros en <service@devolutions.net> para obtener más ayuda.
{% endhint %}

### Problema 1

Error de acceso denegado.

#### Solución

Asegúrese de que la cuenta de usuario tenga los permisos necesarios para acceder a un ordenador de forma remota. Consulte [Securing a Remote WMI Connection (Windows)](https://docs.microsoft.com/fr-fr/windows/win32/wmisdk/securing-a-remote-wmi-connection?redirectedfrom=MSDN#setting_dcom_security_to_allow_a_user_to_access_a_computer_remotely).

También puede encontrar consejos para la solución de problemas en [WMI Troubleshooting (Windows)](https://docs.microsoft.com/en-us/windows/win32/wmisdk/wmi-troubleshooting?redirectedfrom=MSDN).

### Problema 2

Error al obtener la información de los productos.

#### Solución

Clase WMI no válida o clase WMI no encontrada en Windows Server 2003. En Windows Server 2003, Win32\_Product no está habilitado de forma predeterminada.

### Problema 3

Pruebas desde un ordenador remoto.

#### Solución

El comando WMIC se utiliza para comprobar si tiene acceso a la máquina a través de WMI. Debe introducir el siguiente comando: `wmic /NODE:"ComputerName" bios get serialnumber`

A continuación se muestra un ejemplo con otras credenciales: `wmic /NODE:"ComputerName" /user:"username" /password:"password" bios get serialnumber`

### Problema 4

La carga desde Información del sistema no funciona. Error al obtener la información de la BIOS.

#### Solución

Este error puede tener varios orígenes. Valide lo siguiente:

* Las sesiones deben ser RDP.
* La estación debe estar en el mismo dominio.
* Las credenciales deben estar en la sección ***Herramientas*** de la sesión y ser correctas.
* Pruebe las solicitudes WMI directamente desde la estación para ver si la comunicación funciona.


---

# 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/rdm/es/knowledge-base/troubleshooting-articles/wmi-troubleshooting.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.
