This is a small and simple post. I don’t know about you, but I am always forgetting the correct wording of a PowerShell Module that I need to import before I can start typing away the PowerShell cmd-lets I am trying to use. So, instead, I remember this:
Get-Module -ListAvailable
Doing this shows me the available modules and I can then enter the Import-Module command I am after, instead of trying to guess what the Module Name was.
Until next time!