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.
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.PowerShellComandos
Para enumerar todos los comandos cmdlet, introduzca este comando:
Get-Command -Module Devolutions.PowerShellPara obtener más información sobre esos comandos, utilice el siguiente comando:
get-help [command name] -FullPara 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?