Retrieves the fully-qualified path for the file containing the specified module
#include <WinAPIProc.au3>
_WinAPI_GetModuleFileNameEx ( $hProcess [, $hModule = 0] )
$hProcess | Handle to the process that contains the module. The handle must have the $PROCESS_QUERY_INFORMATION or $PROCESS_QUERY_LIMITED_INFORMATION access right and the $PROCESS_VM_READ access right. |
$hModule | [optional] Handle to the module. If this parameter is 0 (Default), the function retrieves the path of the executable file of the process. |
Success: | The fully-qualified path to the module. |
Failure: | Sets the @error flag to non-zero, call _WinAPI_GetLastError() to get extended error information. |
This function does not retrieve the path for modules that were loaded using the $LOAD_LIBRARY_AS_DATAFILE flag.
For more information, see _WinAPI_LoadLibraryEx().
Search GetModuleFileNameEx in MSDN Library.