Summary: Learn to easily import all Windows PowerShell modules.
How can I import all Windows PowerShell modules into my current Windows PowerShell session?
Use the Get-Module cmdlet with the –ListAvailable switch, and pipe the results to the Import-Module cmdlet:
Get-Module -ListAvailable | Import-Module
You can also use aliases:
gmo -l | ipmo