Summary: Learn how to load all Windows PowerShell modules at startup.
How can I load all of my Windows PowerShell modules when I start the Windows PowerShell console?
In your Windows PowerShell profile, use the Get-Module cmdlet and pipe the results to the
Import-Module cmdlet, for example:
Get-Module -ListAvailable | Import-Module