> 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/powershell/de/powershell-commands/convert-from-rdmwebsitelegacyentry.md).

# Convert-From-RDMWebsiteLegacyEntry

### Übersicht <a href="#synopsis" id="synopsis"></a>

Konvertiert einen veralteten Website-Eintrag in den modernen Website-Eintragstyp.

### Syntax <a href="#syntax" id="syntax"></a>

`ConvertFrom-RDMWebsiteLegacyEntry -InputObject <PSConnection> [-ForcePromptAnswer <Cancel | No | Yes>] [<CommonParameters>]`

### Beschreibung <a href="#description" id="description"></a>

Konvertiert einen veralteten Website-Eintrag in den modernen Website-Eintragstyp. Der konvertierte Eintrag wird zurückgegeben, aber nicht gespeichert — leiten Sie das Ergebnis an Set-RDMEntry weiter, um die Änderung dauerhaft zu speichern.

### Parameter <a href="#parameters" id="parameters"></a>

#### -ForcePromptAnswer <a href="#forcepromptanswer" id="forcepromptanswer"></a>

Schalter, der mit Vorsicht zu verwenden ist. Er beantwortet automatisch Eingabeaufforderungen mit ja/nein-, ja/nein/abbrechen- oder ok/abbrechen-Fragen. Im Falle mehrerer Eingabeaufforderungen können mehrere Werte an diesen Parameter übergeben werden. Hier sind die akzeptierten Werte:

* Yes: Die Eingabeaufforderung annehmen. Deckt die Werte OK und Automatic ab.
* No: Die ja/nein/abbrechen-Eingabeaufforderung ablehnen. Cancel ist die Ausweichoption, wenn es keine Option No gibt.
* Cancel: Die ja/nein/abbrechen-Eingabeaufforderung abbrechen. No ist die Ausweichoption, wenn es keine Option Cancel gibt.

```
Required? false
Position? named
Default value
Accept pipeline input? false
Aliases Accept wildcard characters? false
```

#### -InputObject <a href="#inputobject" id="inputobject"></a>

PSConnection-Objekt, das den zu konvertierenden veralteten Website-Eintrag enthält.

```
Required? true
Position? 0
Default value
Accept pipeline input? true (ByValue)
Aliases
Accept wildcard characters? false
```

Dieses Cmdlet unterstützt die allgemeinen Parameter: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable und OutVariable. Weitere Informationen finden Sie unter [about\_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).

### Eingaben

**RemoteDesktopManager.PowerShellModule.PSOutputObject.PSConnection** Zu konvertierender veralteter Website-Eintrag, abgerufen über Get-RDMEntry.

### Ausgaben

**RemoteDesktopManager.PowerShellModule.PSOutputObject.PSConnection** Konvertierter Website-Eintrag.

### Hinweise

Für weitere Informationen geben Sie "Get-Help ConvertFrom-RDMWebsiteLegacyEntry -detailed" ein. Für technische Informationen geben Sie "Get-Help ConvertFrom-RDMWebsiteLegacyEntry -full" ein.

### Beispiel

```powershell
Get-RDMEntry -Type DataEntry |
        Where-Object { $_.DataEntry.ConnectionTypeInfos | Where-Object { $_.DataEntryConnectionType -eq 'Web' } } |
        ConvertFrom-RDMWebsiteLegacyEntry |
        Set-RDMEntry
```

Konvertiert alle veralteten Website-Einträge im aktuellen Tresor in den modernen Website-Typ und speichert sie. Der Where-Object-Filter ist erforderlich, weil -Type DataEntry alle Einträge unter der Kategorie 'Information' abruft — der Filter schränkt die Auswahl speziell auf veraltete Website-Einträge ein und überspringt andere Untertypen (Credential, Secure Note usw.). Der konvertierte Eintrag behält die ursprüngliche ID, sodass Set-RDMEntry den veralteten Eintrag direkt überschreibt.

### Verwandte Links

* [Get-RDMEntry](/powershell/de/powershell-commands/get-rdmentry.md)
* [Set-RDMEntry](/powershell/de/powershell-commands/set-rdmentry.md)


---

# 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/powershell/de/powershell-commands/convert-from-rdmwebsitelegacyentry.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.
