Skip to main content

Powershell - Get loaded assemblies

Sometimes you need to check if an assembly is loaded in your session.

How can you check if an assembly is loaded in your current session? You can use this function I have created or roll you own command using [System.AppDomain] and the static method GetAssemblies().

Code:

Cheers

Tore

Comments