For the complete documentation index, see llms.txt. This page is also available as Markdown.

Módulo de PowerShell

Remote Desktop Manager es compatible con Windows PowerShell. PowerShell es una potente herramienta de scripting que permite a los administradores automatizar Remote Desktop Manager. Se proporcionan en un módulo de PowerShell.

La versión mínima requerida de PowerShell es la 7.5.

Instalar e importar manualmente el módulo Devolutions.PowerShell

El módulo Devolutions.PowerShell ya está disponible en la PowerShell Gallery. También se puede instalar e importar mediante los comandos que figuran a continuación. Consulte Módulo Devolutions.PowerShell para obtener más instrucciones sobre el uso del módulo de PowerShell.

Install-Module -Name Devolutions.PowerShell
Import-Module Devolutions.PowerShell

Comandos

Para enumerar todos los comandos cmdlet, introduzca este comando:

Get-Command -Module Devolutions.PowerShell

Para obtener más información sobre esos comandos, utilice el siguiente comando:

get-help [command name] -Full

Para generar un fichero de texto con todos los comandos, utilice los siguientes comandos:

Get-Command -Module Devolutions.PowerShell -Type Cmdlet `
    | Sort-Object -Property Name `
    | Format-Table -Property Name `
    | out-file $env:temp\pshelp.txt

Get-Command -Module Devolutions.PowerShell `
    | ForEach-Object { get-help -name $_.Name -full } `
    | out-file -append $env:temp\pshelp.txt

Última actualización

¿Te fue útil?