Results 1 to 2 of 2

Thread: Running Process with Path

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Jan 2000
    Location
    Montreal
    Posts
    17

    Red face

    Hello everyone
    is there a way to find out all the running file and there files Path ?

  2. #2
    Guru Aaron Young's Avatar
    Join Date
    Jun 1999
    Location
    Red Wing, MN, USA
    Posts
    2,177
    Here's a "Process Lister" I wrote a while back:

    In a Module:
    Code:
    Public Type PROCESSENTRY32
        dwSize As Long
        cntUsage As Long
        th32ProcessID As Long
        th32DefaultHeapID As Long
        th32ModuleID As Long
        cntThreads As Long
        th32ParentProcessID As Long
        pcPriClassBase As Long
        dwFlags As Long
        szExeFile As String * 260
    End Type
    
    Private Type OSVERSIONINFO
        dwOSVersionInfoSize As Long
        dwMajorVersion As Long
        dwMinorVersion As Long
        dwBuildNumber As Long
        dwPlatformId As Long
        szCSDVersion As String * 128
    End Type
    
    Public Declare Function Process32First Lib "Kernel32" (ByVal hSnapshot As Long, lppe As PROCESSENTRY32) As Long
    Public Declare Function Process32Next Lib "Kernel32" (ByVal hSnapshot As Long, lppe As PROCESSENTRY32) As Long
    Public Declare Function CloseHandle Lib "Kernel32" (ByVal Handle As Long) As Long
    Public Declare Function OpenProcess Lib "Kernel32" (ByVal dwDesiredAccessas As Long, ByVal bInheritHandle As Long, ByVal dwProcId As Long) As Long
    Public Declare Function EnumProcesses Lib "psapi.dll" (ByRef lpidProcess As Long, ByVal cb As Long, ByRef cbNeeded As Long) As Long
    Public Declare Function GetModuleFileNameExA Lib "psapi.dll" (ByVal hProcess As Long, ByVal hModule As Long, ByVal ModuleName As String, ByVal nSize As Long) As Long
    Public Declare Function EnumProcessModules Lib "psapi.dll" (ByVal hProcess As Long, ByRef lphModule As Long, ByVal cb As Long, ByRef cbNeeded As Long) As Long
    Public Declare Function CreateToolhelp32Snapshot Lib "Kernel32" (ByVal dwFlags As Long, ByVal th32ProcessID As Long) As Long
    Private Declare Function GetVersionEx Lib "Kernel32" Alias "GetVersionExA" (lpVersionInformation As OSVERSIONINFO) As Long
    Public Declare Function TerminateProcess Lib "Kernel32" (ByVal hProcess As Long, ByVal uExitCode As Long) As Long
    
    Public Const PROCESS_TERMINATE = &H1
    Public Const VER_PLATFORM_WIN32_WINDOWS = 1
    Public Const PROCESS_QUERY_INFORMATION = 1024
    Public Const PROCESS_VM_READ = 16
    Public Const TH32CS_SNAPPROCESS = &H2
    
    Public Function CheckVersion() As Long
        Dim tOS As OSVERSIONINFO
        tOS.dwOSVersionInfoSize = Len(tOS)
        Call GetVersionEx(tOS)
        CheckVersion = tOS.dwPlatformId
    End Function
    In a Form with a Listbox:
    Code:
    Private Sub Form_Load()
        PopulateList
    End Sub
    
    Private Sub PopulateList()
        Dim aPID() As Long
        Dim lProcesses As Long
        Dim lProcess As Long
        Dim lModule As Long
        Dim sName As String
        Dim iIndex As Integer
        Dim bCopied As Long
        Dim lSnapShot As Long
        Dim tPE As PROCESSENTRY32
        
        List1.Clear
        
        If CheckVersion() = VER_PLATFORM_WIN32_WINDOWS Then
            'Windows 9x
            'Create a SnapShot of the Currently Running Processes
            lSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0)
            If lSnapShot < 0 Then Exit Sub
            tPE.dwSize = Len(tPE)
            'Buffer the First Processes Info..
            bCopied = Process32First(lSnapShot, tPE)
            While bCopied
                'While there are Processes List them..
                List1.AddItem _
                Right$("000" & tPE.th32ProcessID, 3) & " - " & _
                Left$(tPE.szExeFile, InStr(proc.szExeFile, Chr(0)) - 1)
                bCopied = Process32Next(lSnapShot, tPE)
                List1.ItemData(List1.NewIndex) = tPE.th32ProcessID
            Wend
        Else
            'Windows NT
            'The EnumProcesses Function doesn't indicate how many Process there are,
            'so you need to pass a large array and trim off the empty elements
            'as cbNeeded will return the no. of Processes copied.
            ReDim aPID(255)
            Call EnumProcesses(aPID(0), 1024, lProcesses)
            lProcesses = lProcesses / 4
            ReDim Preserve aPID(lProcesses)
                    
            For iIndex = 0 To lProcesses - 1
                'Get the Process Handle, by Opening the Process
                lProcess = OpenProcess(PROCESS_QUERY_INFORMATION Or PROCESS_VM_READ, 0, aPID(iIndex))
                If lProcess Then
                    'Just get the First Module, all we need is the Handle to get
                    'the Filename..
                    If EnumProcessModules(lProcess, lModule, 4, 0&) Then
                        sName = Space(260)
                        Call GetModuleFileNameExA(lProcess, lModule, sName, Len(sName))
                        List1.AddItem Right$("000" & aPID(iIndex), 3) & " - " & sName
                        List1.ItemData(List1.NewIndex) = aPID(iIndex)
                    End If
                    'Close the Process Handle
                    lRet = CloseHandle(lProcess)
                End If
            Next
        End If
    End Sub
    
    Private Sub List1_DblClick()
        Dim lProcess As Long
        
        If MsgBox("Are you sure you want to Terminate the Process: " & vbCrLf & vbCrLf & _
        List1 & vbCrLf, vbYesNoCancel + vbQuestion, "Terminate Process") = vbYes Then
            'Close the Process..
            lProcess = OpenProcess(PROCESS_TERMINATE, 0, List1.ItemData(List1.ListIndex))
            Call TerminateProcess(lProcess, 0&)
            Call CloseHandle(lProcess)
            PopulateList
        End If
    End Sub

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width