Summary: Use Windows PowerShell to get session owner information.
How can I get more information about which Windows PowerShell session configurations came with
my system and which were set up by another administrator?
Use Get-PssessionConfiguration and target the Name and Author properties, for example:
Get-PssessionConfiguration | Select-Object –Property Name,Author | Format-Table -autosize