> 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/es/comandos-de-powershell/start-psudashboard.md).

# Start-PSUDashboard

Start-PSUDashboard inicia una aplicación de panel detenida, identificada por nombre o por objeto de aplicación, en un servidor PowerShell Universal remoto o local.

### Sinopsis

Inicia una aplicación en PowerShell Universal.

### Sintaxis

```powershell
Start-PSUDashboard [-AppToken <String>] [-ComputerName <String>] [-Integrated] [-UseDefaultCredentials] [-Credential <PSCredential>] [-TrustCertificate] -App <Dashboard> [<CommonParameters>]

Start-PSUDashboard [-AppToken <String>] [-ComputerName <String>] [-Integrated] [-UseDefaultCredentials] [-Credential <PSCredential>] [-TrustCertificate] -Name <String> [<CommonParameters>]
```

### Descripción

Inicia una aplicación en PowerShell Universal.

### Parámetros

#### -AppToken

El AppToken que se utiliza para llamar a la API de gestión de PowerShell Universal. También puede llamar a Connect-PSUServer antes de ejecutar este cmdlet para establecer el AppToken para toda la sesión.

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

#### -ComputerName

Especifica el nombre de equipo o la URL a la que se debe llamar al acceder a la API de gestión de PowerShell Universal. También puede usar Connect-PSUServer antes de ejecutar este cmdlet para establecer el nombre de equipo para toda la sesión.

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

#### -Integrated

Ejecuta el comando internamente en lugar de usar la API de gestión. Solo funciona cuando se ejecuta el script desde dentro de PowerShell Universal.

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

#### -UseDefaultCredentials

Usar las credenciales predeterminadas al conectarse a la API de gestión

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

#### -Credential

Credenciales para iniciar sesión en la API de gestión de PowerShell Universal.

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

#### -TrustCertificate

Indica si el cmdlet debe ignorar los problemas de certificado.

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

#### -App

{{ Fill App Description }}

```
Required?                    true
Position?                    named
Default value                None
Accept pipeline input?       True (ByValue)
Aliases                      Dashboard
Accept wildcard characters?  false
```

#### -Name

El nombre de la aplicación que se va a iniciar.

```
Required?                    true
Position?                    named
Default value                None
Accept pipeline input?       True (ByValue)
Aliases                      none
Accept wildcard characters?  false
```

#### Parámetros comunes

Este cmdlet admite los parámetros comunes: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable y OutVariable. Para obtener más información, consulte [about\_CommonParameters](https://go.microsoft.com/fwlink/?LinkID=113216).

### Entradas

PowerShellUniversal.Dashboard

### Salidas

System.Object

### Notas

### Ejemplos

#### Ejemplo 1

```powershell
Get-PSUApp -Name 'MyApp' | Start-PSUDashboard
```

Inicia la aplicación 'MyApp' en PowerShell Universal.


---

# 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/es/comandos-de-powershell/start-psudashboard.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.
