Jump to content

_ProcessGetParent() : _ProcessGetChildren()


SmOke_N
 Share

Recommended Posts

  • Moderators

_ProcessGetParent:
Example Call:

MsgBox(0, "Parent Process", _ProcessGetParent(@AutoItPID))
Func _ProcessGetParent($i_pid)
    Local $TH32CS_SNAPPROCESS = 0x00000002
    
    Local $a_tool_help = DllCall('Kernel32.dll', 'long', 'CreateToolhelp32Snapshot', 'int', $TH32CS_SNAPPROCESS, 'int', 0)
    If IsArray($a_tool_help) = 0 Or $a_tool_help[0] = -1 Then Return SetError(1, 0, $i_pid)
    
    Local $tagPROCESSENTRY32 = _
            DllStructCreate( _
            'dword dwsize;' & _
            'dword cntUsage;' & _
            'dword th32ProcessID;' & _
            'uint th32DefaultHeapID;' & _
            'dword th32ModuleID;' & _
            'dword cntThreads;' & _
            'dword th32ParentProcessID;' & _
            'long pcPriClassBase;' & _
            'dword dwFlags;' & _
            'char szExeFile[260]' _
            )
    DllStructSetData($tagPROCESSENTRY32, 1, DllStructGetSize($tagPROCESSENTRY32))
    
    Local $p_PROCESSENTRY32 = DllStructGetPtr($tagPROCESSENTRY32)
    
    Local $a_pfirst = DllCall('Kernel32.dll', 'int', 'Process32First', 'long', $a_tool_help[0], 'ptr', $p_PROCESSENTRY32)
    If IsArray($a_pfirst) = 0 Then Return SetError(2, 0, $i_pid)
    
    Local $a_pnext, $i_return = 0
    If DllStructGetData($tagPROCESSENTRY32, 'th32ProcessID') = $i_pid Then
        $i_return = DllStructGetData($tagPROCESSENTRY32, 'th32ParentProcessID')
        DllCall('Kernel32.dll', 'int', 'CloseHandle', 'long', $a_tool_help[0])
        If $i_return Then Return $i_return
        Return $i_pid
    EndIf
    
    While @error = 0
        $a_pnext = DllCall('Kernel32.dll', 'int', 'Process32Next', 'long', $a_tool_help[0], 'ptr', $p_PROCESSENTRY32)
        If DllStructGetData($tagPROCESSENTRY32, 'th32ProcessID') = $i_pid Then
            $i_return = DllStructGetData($tagPROCESSENTRY32, 'th32ParentProcessID')
            If $i_return Then ExitLoop
            $i_return = $i_pid
            ExitLoop
        EndIf
    WEnd
    DllCall('Kernel32.dll', 'int', 'CloseHandle', 'long', $a_tool_help[0])
    Return $i_return
EndFunc   ;==>_ProcessGetParent
Func _ProcessGetChildren($i_pid)
    Local Const $TH32CS_SNAPPROCESS = 0x00000002
    
    Local $a_tool_help = DllCall('Kernel32.dll', 'long', 'CreateToolhelp32Snapshot', 'int', $TH32CS_SNAPPROCESS, 'int', 0)
    If IsArray($a_tool_help) = 0 Or $a_tool_help[0] = -1 Then Return SetError(1, 0, $i_pid)
    
    Local $tagPROCESSENTRY32 = _
            DllStructCreate _
            ( _
            'dword dwsize;' & _
            'dword cntUsage;' & _
            'dword th32ProcessID;' & _
            'uint th32DefaultHeapID;' & _
            'dword th32ModuleID;' & _
            'dword cntThreads;' & _
            'dword th32ParentProcessID;' & _
            'long pcPriClassBase;' & _
            'dword dwFlags;' & _
            'char szExeFile[260]' _
            )
    DllStructSetData($tagPROCESSENTRY32, 1, DllStructGetSize($tagPROCESSENTRY32))
    
    Local $p_PROCESSENTRY32 = DllStructGetPtr($tagPROCESSENTRY32)
    
    Local $a_pfirst = DllCall('Kernel32.dll', 'int', 'Process32First', 'long', $a_tool_help[0], 'ptr', $p_PROCESSENTRY32)
    If IsArray($a_pfirst) = 0 Then Return SetError(2, 0, $i_pid)
    
    Local $a_pnext, $a_children[11] = [10], $i_child_pid, $i_parent_pid, $i_add = 0
    $i_child_pid = DllStructGetData($tagPROCESSENTRY32, 'th32ProcessID')
    If $i_child_pid <> $i_pid Then
        $i_parent_pid = DllStructGetData($tagPROCESSENTRY32, 'th32ParentProcessID')
        If $i_parent_pid = $i_pid Then
            $i_add += 1
            $a_children[$i_add] = $i_child_pid
        EndIf
    EndIf
    
    While 1
        $a_pnext = DllCall('Kernel32.dll', 'int', 'Process32Next', 'long', $a_tool_help[0], 'ptr', $p_PROCESSENTRY32)
        If IsArray($a_pnext) And $a_pnext[0] = 0 Then ExitLoop
        $i_child_pid = DllStructGetData($tagPROCESSENTRY32, 'th32ProcessID')
        If $i_child_pid <> $i_pid Then
            $i_parent_pid = DllStructGetData($tagPROCESSENTRY32, 'th32ParentProcessID')
            If $i_parent_pid = $i_pid Then
                If $i_add = $a_children[0] Then
                    ReDim $a_children[$a_children[0] + 10]
                    $a_children[0] = $a_children[0] + 10
                EndIf
                $i_add += 1
                $a_children[$i_add] = $i_child_pid
            EndIf
        EndIf
    WEnd
    
    If $i_add <> 0 Then
        ReDim $a_children[$i_add + 1]
        $a_children[0] = $i_add
    EndIf
    
    DllCall('Kernel32.dll', 'int', 'CloseHandle', 'long', $a_tool_help[0])
    If $i_add Then Return $a_children
    Return SetError(3, 0, 0)
EndFunc   ;==>_ProcessGetChildren

2015/02/07

Just providing the debug priviledge and process.au3 I use now.  As suggested by Melba below, you may very well find that it's easier to use _WinAPI_GetParentProcess and _WinAPI_EnumChildProcess now.

2015/02/08

It appears there was an issue with the above two functions in my au3's provided.  One noteable one is with ProcessGetChildren, it appears that my functions and _WinAPI_GetParentProcess have the same issue.  Returning a non-existing Process ID when the process has no parent.  Fixed in the non-struck through processes.au3.

DebugPrivilege.au3

Processes.au3

Processes.au3

Edited by SmOke_N
AutoIt tags blew up code

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

  • Moderators

Wow, that seems so complicated. I thought there was a simpler way of doing that, with like... ONE function call. And what an odd function name, "CreateToolhelp32Snapshot" hehe. Cool though, now you just need to get it added to the shipped Process.au3 ;)

Well... I don't really see that as "complicated", but yes, I would have thought so as well (a simple call, maybe a callback func or something). Unfortunately, any research I did on it came up empty for a result (other than WMI).

As far as submission, I don't mind posting here in the example scripts forum, but hate to maintain things like this... so I'll just leave here :D ...

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

  • Moderators

I think you can also do this with 'psapi.dll'. It's been a while since I did the function calls for an NSIS header though.

I've read all the listed functions and structures for psapi on msdn. I won't say it's impossible with with psapi, but I read nothing in msdn that indicated you could do either one of those. Do you have an example?

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

  • 6 years later...
  • Moderators

level20peon,

Rather than posting in thread which has been dormant for over 6 years, why not look in the Help file and see if these functions are now available in the standard set? If you had done so, you might well have found _WinAPI_GetParentProcess & _WinAPI_EnumChildProcess. Much simpler for everyone that way. ;)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

  • Moderators

@level20peon, as curious as I am on what is not working for you with 64bit, I have to agree with Melba.  They've since added these two functions to the _WinAPI library, re-written a little, but still follows the same CreateToolSnapShot/Process32FirstW/Process32NextW format I have above.  So I would suggest following that as they'll more than likely keep up to date with it more than I will these.

The only thing I think is more reliable in my Processes.au3 file, than the _WinAPI library, is the ProcessGetPathEx function, that should be changed in the WinAPI IMO.

I did provide the debug privilege library I use as well for you, that may be the issue you're running into without knowing your true problem.

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

Rather than posting in thread which has been dormant for over 6 years, why not look in the Help file and see if these functions are now available in the standard set? If you had done so, you might well have found _WinAPI_GetParentProcess & _WinAPI_EnumChildProcess. Much simpler for everyone that way. ;)

 

I have done so, but apparently at the wrong location. After therks hinted that this might as well land in the "Process.au3" at some point, this is where I looked - without finding anything. Also, searches for "get child process" and various permutations of this in the autoitscript.com forum via google didn't net any results at all (well, except for this thread).

Thanks for pointing me into the right direction and sorry for the inconvenience.

@level20peon, as curious as I am on what is not working for you with 64bit, I have to agree with Melba.  They've since added these two functions to the _WinAPI library, re-written a little, but still follows the same CreateToolSnapShot/Process32FirstW/Process32NextW format I have above.  So I would suggest following that as they'll more than likely keep up to date with it more than I will these.

The only thing I think is more reliable in my Processes.au3 file, than the _WinAPI library, is the ProcessGetPathEx function, that should be changed in the WinAPI IMO.

I did provide the debug privilege library I use as well for you, that may be the issue you're running into without knowing your true problem.

 

Sure, I will give those functions a try. I don't know what exactly is not working in the "original" function (I tested _ProcessGetChildren()) at this point, I just know that it doesn't return anything if I run it in x64 mode.

Edited by level20peon
Link to comment
Share on other sites

  • Moderators

I've never had a need to compile my executables in 64bit mode.  32bit executables run fine for me, and I don't need to worry if the dllcalls are formatted correctly.

I did however compile and run the above .au3's in 64bit mode just to see, and they ran fine.

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

  • Moderators

It appears there was an issue with the above two functions in my au3's provided.  One noteable one is with ProcessGetChildren, it appears that my functions and _WinAPI_GetParentProcess have the same issue.  Returning a non-existing Process ID when the process has no parent.  Fixed in the non-struck through processes.au3 above.

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...