How do I retrieve the available commands from a module?

Viewed 102503

To know which PowerShell modules are available on a machine I use the command

Get-Module -ListAvailable

This returns a list with module-type, -name and the exported commands. But the exported commands are always empty and just displaying {}. Why is this not displayed?

Do I have to use another parameter or is there another cmdlet or method to retrieve the available commands?

5 Answers

This will List all the commands under a module and search through them:

Get-Command -Module dbatools| ?{$_.name -match 'service'}

[enter image description here][1]In the meantime this command here answers the question:

Get-Command -Module <#Your Module#>

Pretty simple...

Here the Output: https://imgur.com/a/DMWeuKP

PowerShell 2.0 - this works for me:

Get-Module <moduleName> | % {$_.ExportedCommands.Values}

To list the loaded modules in the current session:

Get-Module
Related