PowerShell module
Manually install and import the Devolutions.PowerShell module
Install-Module -Name Devolutions.PowerShell
Import-Module Devolutions.PowerShellCommands
Get-Command -Module Devolutions.PowerShellget-help [command name] -FullGet-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.txtLast updated
Was this helpful?