Jump to content

Process Functions UDFs questions


Recommended Posts

I am trying to is Ascend4nt's Process Functions UDFs http://sites.google.com/site/ascend4ntscode/processfunctions to get the path of a process.

Here is my code obviously I am doing something wrong, however I not sure what as I can't find any help-file on this UDF.

#include "_ProcessFunctions.au3"
$handle = _ProcessOpen(3800,1)
$path = _ProcessGetPathname($handle)
Msgbox(0,"",$path)

this just gives an empty messagebox

Link to comment
Share on other sites

Play around with 'TestProcessFunctions'. It will give you the code you need to open a process handle, call, and close a process handle. It even gives you the attributes to set.

Try this (replace "autoit3.exe" with the processname you wish to get. NEVER use a process ID like 3800 as these are transitory)

#include <_ProcessFunctions.au3>
$iProcessID=ProcessExists("autoit3.exe")
$hProcess=_ProcessOpen($iProcessID,$PROCESS_QUERY_LIMITED_INFO)
$path = _ProcessGetPathname($hProcess)
_ProcessCloseHandle($hProcess)
Msgbox(0,"",$path)
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...