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 1 year ago