Summary: Learn how to use Windows PowerShell to find the calling assembly.
How can I find the name of a calling assembly from within Windows PowerShell?
Use the GetCallingAssembly static method from the [system.Reflection.Assembly] class:
[system.reflection.assembly]::GetCallingAssembly()