> 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-universal/de/powershell-befehle/select-psudeployment.md).

# Select-PSUDeployment

## SYNOPSIS

Wendet eine Bereitstellung auf den Server an.

## SYNTAX

### Bereitstellung

```
Select-PSUDeployment -Deployment <Deployment> [-Synchronous] [-Pin] [-ComputerName <String>]
 [-AppToken <String>] [-Credential <PSCredential>] [-UseDefaultCredentials] [-Integrated] [-TrustCertificate]
 [-Cookies] [<CommonParameters>]
```

### Modul

```
Select-PSUDeployment -ModuleName <String> -ModuleVersion <String> [-Synchronous] [-Pin]
 [-ComputerName <String>] [-AppToken <String>] [-Credential <PSCredential>] [-UseDefaultCredentials]
 [-Integrated] [-TrustCertificate] [-Cookies] [<CommonParameters>]
```

## DESCRIPTION

Wendet eine Bereitstellung auf den Server an. Das Anpinnen einer Bereitstellung setzt den Server auf schreibgeschützt.

## EXAMPLES

### Beispiel 1

```powershell
PS C:\> Select-PSUDeployment -Deployment (Get-PSUDeployment -Name 'Production' -Version '2.0.0')
```

Wendet die Bereitstellung mit dem Namen 'Production' und der Version '2.0.0' an.

### Beispiel 2

```powershell
PS C:\> Select-PSUDeployment -ModuleName 'MyModule' -ModuleVersion '1.0.0'
```

Wendet das Modul mit dem Namen 'MyModule' und der Version '1.0.0' an. Das Modul muss in einem Repository gespeichert sein, das im Server konfiguriert ist.

### Beispiel 3

```powershell
PS C:\> Select-PSUDeployment -ModuleName 'MyModule' -ModuleVersion '1.0.0' -Pin
```

Wendet das Modul mit dem Namen 'MyModule' und der Version '1.0.0' an. Das Modul muss in einem Repository gespeichert sein, das im Server konfiguriert ist. Die Bereitstellung wird angepinnt.

## PARAMETERS

### -AppToken

Ein Anwendungstoken, das für die Authentifizierung verwendet wird.

```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -ComputerName

Die URL des Servers, mit dem eine Verbindung hergestellt werden soll.

```yaml
Type: String
Parameter Sets: (All)
Aliases: Uri

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -Credential

Die für die Authentifizierung zu verwendenden Anmeldeinformationen.

```yaml
Type: PSCredential
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -Deployment

Die anzuwendende Bereitstellung.

```yaml
Type: Deployment
Parameter Sets: Deployment
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
```

### -Integrated

Zur Verwendung bei der Ausführung innerhalb von PowerShell Universal.

```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -ModuleName

Der Name des Moduls, das die Bereitstellung enthält.

```yaml
Type: String
Parameter Sets: Module
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -ModuleVersion

Die Version des Moduls, das die Bereitstellung enthält.

```yaml
Type: String
Parameter Sets: Module
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -Pin

Die Bereitstellung anpinnen.

```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -TrustCertificate

Dem Zertifikat bei der Verbindung mit dem Server vertrauen.

```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -UseDefaultCredentials

Die Standard-Anmeldeinformationen des aktuellen Benutzers verwenden.

```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -Synchronous

Warten, bis die Bereitstellung abgeschlossen ist, bevor zurückgegeben wird.

```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -Cookies

Verwendet Authentifizierungscookies für die aktuelle PowerShell-Sitzung erneut und behält sie bei.

```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### CommonParameters

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

## INPUTS

### PowerShellUniversal.Deployment

## OUTPUTS

### System.Object

## NOTES

## RELATED LINKS


---

# 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-universal/de/powershell-befehle/select-psudeployment.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.
