> 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/es/powershell-commands/export-rdmpasswordanalyzerreport.md).

# Export-RDMPasswordAnalyzerReport

### Sinopsis

Exportar un informe del analizador de seguridad de entradas del espacio de trabajo actual.

### Sintaxis

#### \_\_AllParameterSets

```
Export-RDMPasswordAnalyzerReport [-ReportType] <string> [-ExportType] <string> [-Path] <string>
 [[-Status] <ConnectionStatusFilter>] [-Private] [-ShowAllEntries] [-ShowPwnedPassword]
 [-ShowVPNAnalysis] [-Theme <Theme>] [-ForcePromptAnswer <DialogResult[]>] [<CommonParameters>]
```

### Descripción

Exportar un informe del analizador de seguridad de entradas del espacio de trabajo actual a la ruta especificada. El usuario debe tener acceso a los informes para poder usar el comando.

### Ejemplos

#### Ejemplo 1

```powershell
PS C:\> Export-RDMPasswordAnalyzerReport -ExportType Html -Path C:\mypath\filename.html -Status Expired -Verbose
```

Exporta el informe del Password Analyzer en formato html en la ubicación C:\mypath\filename.html. Solo se incluirán en el informe las conexiones con contraseña caducada. Si el informe no contiene ninguna entrada, un mensaje detallado indicará que el informe está vacío. En ese caso, el informe no se generará.

#### Ejemplo 2

```powershell
PS C:\> Get-RDMDataSource -Name AWorkspace | Set-RDMCurrentDataSource; Export-RDMPasswordAnalyzerReport -ExportType Html -Path C:\mypath\filename.html -ShowAllEntries -ShowVPNAnalysis -ShowPwnedPassword -Private
```

Cambia el espacio de trabajo actual a AWorkspace y exporta el informe del Password Analyzer en formato html en la ubicación C:\mypath\filenmae.html. El informe contendrá todas las conexiones, incluso aquellas sin contraseña, el análisis de VPN, e identificará las contraseñas comprometidas.

#### Ejemplo 3

```powershell
PS C:\> $original = Get-RDMCurrentDataSource; $ds = Get-RDMDataSource; $ds.ForEach({Set-RDMCurrentDataSource -DataSource $_; Export-RDMPasswordAnalyzerReport -ExportType Html -Path C:\mypath\$($_.Name).html -ShowPwnedPassword -Private}); Set-RDMCurrentDataSource -DataSource $original
```

Para todos los espacios de trabajo, exporta el informe del Password Analyzer de la bóveda privada en formato html en el directorio C:\mypath, donde el nombre del fichero será el mismo que el nombre del espacio de trabajo. El espacio de trabajo actual inicial se volverá a establecer como el actual.

### Parámetros

#### -ExportType

Especifique el tipo de fichero de la exportación. Se admiten CSV, HTML y XLM.

```yaml
Type: System.String
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
  Position: 1
  IsRequired: true
  ValueFromPipeline: false
  ValueFromPipelineByPropertyName: false
  ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
```

#### -ForcePromptAnswer

Modificador que debe usarse con precaución. Responderá automáticamente a los mensajes que planteen preguntas de sí/no, sí/no/cancelar u ok/cancelar. En caso de varios mensajes, se pueden pasar varios valores a este parámetro. Estos son los valores aceptados:

* Yes: Acepta el mensaje. Cubre los valores OK y Automatic.
* No: Rechaza el mensaje sí/no/cancelar. "Cancel" es la opción alternativa si no existe la opción "No".
* Cancel: Cancela el mensaje sí/no/cancelar. "No" es la opción alternativa si no existe la opción "Cancel".

```yaml
Type: System.Windows.Forms.DialogResult[]
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
  Position: Named
  IsRequired: false
  ValueFromPipeline: false
  ValueFromPipelineByPropertyName: false
  ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
```

#### -Path

Ruta donde se guardará el fichero. Debe terminar con:

"CSV: .csv", "HTML: .html", "XML: .xml"

```yaml
Type: System.String
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
  Position: 2
  IsRequired: true
  ValueFromPipeline: false
  ValueFromPipelineByPropertyName: false
  ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
```

#### -Private

El informe abarcará la lista de sesiones disponibles de la bóveda privada del usuario.

```yaml
Type: System.Management.Automation.SwitchParameter
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
  Position: Named
  IsRequired: false
  ValueFromPipeline: false
  ValueFromPipelineByPropertyName: false
  ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
```

#### -ReportType

Especifique el tipo de informe que se va a exportar. Por ahora solo se admite PasswordAnalyzer (analizador de seguridad de entradas).

```yaml
Type: System.String
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
  Position: 0
  IsRequired: true
  ValueFromPipeline: false
  ValueFromPipelineByPropertyName: false
  ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
```

#### -ShowAllEntries

Muestra también las entradas sin contraseña

```yaml
Type: System.Management.Automation.SwitchParameter
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
  Position: Named
  IsRequired: false
  ValueFromPipeline: false
  ValueFromPipelineByPropertyName: false
  ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
```

#### -ShowPwnedPassword

Muestra las contraseñas comprometidas (pwned)

```yaml
Type: System.Management.Automation.SwitchParameter
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
  Position: Named
  IsRequired: false
  ValueFromPipeline: false
  ValueFromPipelineByPropertyName: false
  ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
```

#### -ShowVPNAnalysis

Muestra el análisis de VPN

```yaml
Type: System.Management.Automation.SwitchParameter
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
  Position: Named
  IsRequired: false
  ValueFromPipeline: false
  ValueFromPipelineByPropertyName: false
  ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
```

#### -Status

Filtra las conexiones según su estado. El filtro "Default" conserva las conexiones cuyo estado no está especificado.

```yaml
Type: Devolutions.RemoteDesktopManager.ConnectionStatusFilter
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
  Position: 3
  IsRequired: false
  ValueFromPipeline: false
  ValueFromPipelineByPropertyName: false
  ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
```

#### -Theme

Especifique el tema del informe. Si no se especifica, se utilizará el tema de RDM.

```yaml
Type: System.Nullable`1[Devolutions.RemoteDesktopManager.Theme]
DefaultValue: ''
SupportsWildcards: false
Aliases: []
ParameterSets:
- Name: (All)
  Position: Named
  IsRequired: false
  ValueFromPipeline: false
  ValueFromPipelineByPropertyName: false
  ValueFromRemainingArguments: false
DontShow: false
AcceptedValues: []
HelpMessage: ''
```

#### CommonParameters

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

### Notas

Para obtener más información, escriba "Get-Help Export-RDMPasswordAnalyzerReport -detailed". Para obtener información técnica, escriba "Get-Help Export-RDMPasswordAnalyzerReport -full".


---

# 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/es/powershell-commands/export-rdmpasswordanalyzerreport.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.
