The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
553 B
23 lines
553 B
4 years ago
|
# Copyied from GStreamer project
|
||
|
# Author: Seungha Yang <seungha.yang@navercorp.com>
|
||
|
|
||
|
$i=1
|
||
|
$ppid=(gwmi win32_process -Filter "processid='$pid'").parentprocessid
|
||
|
$pname=(Get-Process -id $ppid).Name
|
||
|
While($true) {
|
||
|
if($pname -eq "cmd" -Or $pname -eq "powershell") {
|
||
|
Write-Host ("{0}.exe" -f $pname)
|
||
|
Break
|
||
|
}
|
||
|
|
||
|
# 10 times iteration seems to be sufficient
|
||
|
if($i -gt 10) {
|
||
|
Break
|
||
|
}
|
||
|
|
||
|
# not found yet, find grand parant
|
||
|
$ppid=(gwmi win32_process -Filter "processid='$ppid'").parentprocessid
|
||
|
$pname=(Get-Process -id $ppid).Name
|
||
|
$i++
|
||
|
}
|