> 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/de/knowledge-base/how-to-articles/elevate-management-tools-with-a-privileged-account.md).

# Verwaltungstools mit einem privilegierten Konto erhöhen

Erfahren Sie, wie Sie Tools mit erhöhten Rechten über den Sitzungstyp PowerShell Remote in Remote Desktop Manager verwalten. Damit wird über ps-sessions mit anderen Anmeldeinformationen eine Verbindung zu einem Remote-Host aufgebaut.

### Voraussetzung

* Der [***WinRM-HTTPS-Listener***](https://learn.microsoft.com/en-us/windows/win32/winrm/installation-and-configuration-for-windows-remote-management) ist auf der Zielarbeitsstation korrekt konfiguriert.
* Es wird ein ***gültiges SSL-Zertifikat*** mit einem passenden Fingerabdruck verwendet.

#### Konfigurieren eines **PowerShell-Terminal-(Remote)-Eintrags**

1. Öffnen Sie **Remote Desktop Manager.**
2. Klicken Sie auf **Neuer Eintrag** und suchen Sie nach **PowerShell terminal (Remote)**.
3. Wählen Sie **PowerShell terminal (Remote)** als Sitzungstyp aus.
4. Geben Sie den Namen, den Host und die Anmeldeinformationen ein.

   <div data-gb-custom-block data-tag="hint" data-style="info" class="hint hint-info"><p>Sie können mehrere Hosts konfigurieren und das Ziel beim Start der Sitzung auswählen.</p></div>
5. Die erweiterten Anmeldeinformationen können benutzerdefinierte Anmeldeinformationen aus AD, ein Konto der privilegierten Zugriffsverwaltung oder ein beliebiger anderer Anmeldeinformationseintrag aus Remote Desktop Manager sein.
6. Um Berechtigungen zu erweitern, muss die Sitzung so konfiguriert sein, dass sie ***als Administrator ausgeführt*** wird.
7. Wechseln Sie zum Tab **Run as**.
8. Aktivieren Sie die Einstellung **Run as administrator**. Beachten Sie, dass Port 5986 - HTTPS (WinRM) verwendet wird, wenn der PowerShell-Eintrag als Administrator ausgeführt wird.

   ![](https://cdnweb.devolutions.net/docs/RDMW6039_2025_1.png)
9. Klicken Sie auf ***Add***, um den PowerShell-Eintrag zu speichern.
10. Führen Sie den PowerShell-Eintrag aus.
11. Um zu bestätigen, dass die Sitzung unter einem privilegierten Konto ausgeführt wird, verwenden Sie die folgenden PowerShell-Befehle:

* Aktuellen Benutzer prüfen

```powershell
whoami
```

* Erweiterte Berechtigungen überprüfen

```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/de/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.
