Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Easily Load all Windows PowerShell Modules

$
0
0

Summary: See how to load all Windows PowerShell modules into a current session.

Hey, Scripting Guy! Question How can I load all Windows PowerShell modules I have on my system?

          Hey, Scripting Guy! Answer Use the Get-Module cmdlet with the ListAvailable switch, and pipe the results to the Import-Module cmdlet.

                           Get-Module -ListAvailable | Import-Module


Viewing all articles
Browse latest Browse all 3333

Trending Articles