Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than psapi, prefix the name with the module name and a period.
Declare Function GetProcessImageFileName Lib "psapi.dll"
Declare Function GetProcessImageFileName Lib "psapi.dll" (TODO) As TODO
<DllImport("psapi.dll")> _
Public Shared Function GetProcessImageFileName(
ByVal hProcess As IntPtr,
<Out> lpImageFileName As StringBuilder,
<[In]> <MarshalAs(UnmanagedType.U4)> uSize As Integer
) As UInteger
End Function
User-Defined Types:
None.
Alternative Managed API:
Do you know one? Please contribute it!
Notes:
From MSDN: The GetProcessImageFileName function returns the path in device form, rather than drive letters. For example, the file name C:\Winnt\System32\Ctype.nls would look as follows in device form:
This can be used in place of the GetModuleFileName call, which doesn't work on processes that haven't been loaded by the current one.
Tips & Tricks:
I found this to be more comprehensive than GetModuleFileNameEx. Didnt need to enumerate windows or modules
Sample Code:
uint pid = 0;
StringBuilder fileName = new StringBuilder(2000);
/** get the handle for point under cursor **/
IntPtr hWnd = WindowFromPoint(pt);
/** Need to get the process ID from handle under cursor **/
GetWindowThreadProcessId(hWnd, out pid);
/** Hook into process **/
IntPtr pic = OpenProcess(NativeMethods.ProcessAccessFlags.All, true, (int)pid);
/** This gets the filename of the process image. Path is in device format **/
GetProcessImageFileName(pic, fileName, 2000);
MessageBox.Show(fileName.ToString());
Retrieves the name of the executable file for the specified process.
2/20/2017 7:01:23 AM - -217.5.149.218
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).