> 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/server/fr/knowledge-base/how-to-articles/enable-winrm-and-add-trusted-hosts.md).

# Activer WinRM et ajouter des hôtes de confiance

Ce guide fournit les étapes pour activer WinRM et ajouter le nom d'une machine distante dans la liste des hôtes de confiance sur le serveur où Devolutions Server est hébergé. Les ports de transport WinRM sont 5985 pour HTTP et 5986 pour HTTPS.

1. Assurez-vous que WinRM est activé sur la machine distante où se trouvent les comptes locaux. La commande `winrm quickconfig` peut être utilisée pour activer WinRM.

{% hint style="info" %}
Pour plus de détails, consultez [Enable Windows Remote Shell](https://docs.microsoft.com/en-us/troubleshoot/windows-server/remote/how-to-enable-windows-remote-shell) et [Installation and configuration for Windows Remote Management](https://learn.microsoft.com/en-us/windows/win32/winrm/installation-and-configuration-for-windows-remote-management).
{% endhint %}

2. Ajoutez le nom de la machine distante dans la liste des hôtes de confiance de la machine sur laquelle Devolutions Server est hébergé. Voici les commandes PowerShell.

* Pour ajouter tous les hôtes distants en une seule fois : `Set-Item WSMan:localhost\client\trustedhosts -value *`
* Pour ajouter tous les hôtes distants d'un domaine spécifique à la liste des hôtes de confiance : `Set-Item WSMan:\localhost\Client\TrustedHosts *.yourdomain.local`
* Pour ajouter un seul hôte à la liste des hôtes de confiance existante : `Set-Item WSMan:\localhost\Client\TrustedHosts host.yourdomain.local -Concatenate`

#### Voir aussi

* [Enable PowerShell WinRM Remoting in PowerShell 7](https://awakecoding.com/posts/enable-powershell-winrm-remoting-in-powershell-7/)


---

# 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:

```
GET https://docs.devolutions.net/server/fr/knowledge-base/how-to-articles/enable-winrm-and-add-trusted-hosts.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
