Ironman Software Forums
Continue the conversion on the Ironman Software forums. Chat with over 1000 users about PowerShell, PowerShell Universal, and PowerShell Pro Tools.
You can use Get-Module
to list imported modules.
Get-Module
Output will include only imported modules.
ModuleType Version PreRelease Name ExportedCommands
---------- ------- ---------- ---- ----------------
Script 2.1.0 PSReadLine {Get-PSReadLineKeyHandler, Get-PSReadLineOption, Remove-PSRead…
You can include the -All
parameter on Get-Module
to list all imported modules.
Get-Module -All
This includes nested modules.
ModuleType Version PreRelease Name ExportedCommands
---------- ------- ---------- ---- ----------------
Binary 2.1.0.0 Microsoft.PowerShell.PSReadLine2 {Get-PSReadLineOption, Set-PSReadLineOption, Set-PSReadLineKey…
Script 2.1.0 PSReadLine {Get-PSReadLineKeyHandler, Get-PSReadLineOption, Remove-PSRead…
You can view all modules available on the system (based on $ENV:PSModulePath
) by using the -ListAvailable
parameter.
Get-Module -ListAvailable
You can view all modules installed with PowerShellGet by using the Get-InstalledModule
cmdlet.
Get-InstalledModule
Find this useful? Please consider sharing this article. Have a question about PowerShell? Contact us and we'll write a post about it.
Continue the conversion on the Ironman Software forums. Chat with over 1000 users about PowerShell, PowerShell Universal, and PowerShell Pro Tools.
Receive once-a-month updates about Ironman Software. You'll learn about our product updates and blogs related to PowerShell.