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 2 years ago