List Assemblies loaded in powershell

How do you list what assemblies are loaded in PowerShell? In the past I have had to troubleshoot scoping issues trying to determine if a specific assembly was loaded in a specific scope. I finally found this as a way to display the assemblies.

 
[appdomain]::CurrentDomain.GetAssemblies()

Enjoy

Jeff

External Resources:

https://social.technet.microsoft.com/Forums/windowsserver/en-US/7577cc21-cf56-48ad-a97c-4b3235cd6e39/how-to-list-assemblies?forum=winserverpowershell