Summary: See how to load all Windows PowerShell modules into a current session.
How can I load all Windows PowerShell modules I have on my system?
Use the Get-Module cmdlet with the ListAvailable switch, and pipe the results to the Import-Module cmdlet.
Get-Module -ListAvailable | Import-Module