|
-
Sep 15th, 2009, 01:59 AM
#1
Thread Starter
Member
Finding processes path in Windows XP
This thread, like many others I found, is quite old, and like all others does not help me...
I found dozens of VB sources which should allow finding path of running processes in Windows XP, but none of them does actually work, the can only get the .exe name!
Can anybody point me to a tested source which actually works in Windows XP?!?
-
Sep 15th, 2009, 02:15 AM
#2
Re: Finding processes path in Windows XP
I hope this works for you.
Code:
Dim Process As Object
For Each Process In GetObject("winmgmts:").ExecQuery("Select * from Win32_Process")
Debug.Print Process.ExecutablePath, Process.Caption
Next
-
Sep 15th, 2009, 03:53 AM
#3
Thread Starter
Member
Re: Finding processes path in Windows XP
 Originally Posted by dee-u
I hope this works for you.
Code:
Dim Process As Object
For Each Process In GetObject("winmgmts:").ExecQuery("Select * from Win32_Process")
Debug.Print Process.ExecutablePath, Process.Caption
Next
Thank you very much.
-
Sep 15th, 2009, 04:19 AM
#4
Thread Starter
Member
Re: Finding processes path in Windows XP
any chance somebody knows how to get this working in RapidQ Basic too?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|