List load assembly

We can list loaded assemblies using the GetAssemblies method on the CurrentDomain object.

[System.AppDomain]::CurrentDomain.GetAssemblies() | Sort-Object -Property FullName | Format-Table FullName

Last updated