Module Management in Powershell
Listing modules
We can list the available modules in Powershell using below syntax.
> Get-Module -ListAvailable
Importing module
To import the module, you can use below syntax.
> Import-Module <module-name>
Listing commands available in a module
You can view which commands are available in specific module using below syntax.
> Get-Command -module <module-name>
Recent Comments