The DLLs for the process are contained in the Modules property of the Process object returned by Get-Process .
Get-Process notepad| select -ExpandProperty modules| Format-Table -AutoSize
To find a specific DLL, you can do something like this:
Get-Process chrome| select -ExpandProperty modules| foreach { if($_.ModuleName -eq 'pdf.dll'){$_.Filename} }
Since there can be many processes with the same name, you can use this to show only individual locales of the DLL:
Get-Process chrome| select -ExpandProperty modules| where {$_.ModuleName -eq 'pdf.dll'}| group -Property FileName| select name
source share