Modules
Add Module Repository
Module repository is a registry of powershell modules. It can be public or privately hosted by yourself.
ps1
Register-PSRepository <url>
1
Install a Module
ps1
Install-Module <name>
1
Search Modules
Search module to be installed in registered repositories.
ps1
Find-Module <pattern>
1