Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get available modules

With PHP you have the phpinfo() which lists installed modules and then from there look up what they do.

Is there a way to see what packages/modules are installed to import?

like image 508
Wizzard Avatar asked Oct 17 '10 08:10

Wizzard


People also ask

How can you get a list of all available modules on your computer?

To see all modules installed on the system, use the Get-Module -ListAvailable command.

Where do I get PowerShell modules?

The AllUsers location is $env:PROGRAMFILES\PowerShell\Modules on Windows. On Linux or Mac the modules are stored at /usr/local/share/powershell/Modules .

How do I find a module?

Description. The Find-Module cmdlet finds modules in a repository that match the specified criteria. Find-Module returns a PSRepositoryItemInfo object for each module it finds. The objects can be sent down the pipeline to cmdlets such as Install-Module .


1 Answers

Type help() in the interpreter

then

To get a list of available modules, keywords, or topics, type "modules", "keywords", or "topics".  Each module also comes with a one-line summary of what it does; to list the modules whose summaries contain a given word such as "spam", type "modules spam".                                       help> modules  
like image 191
ghostdog74 Avatar answered Oct 21 '22 08:10

ghostdog74