Stats_Get_ParentProcess.ps1

function Stats-GetParentProcess {
$process = Get-Process -Name Notepad
$process.Parent
}