Trying to find the path location of each process that is running in the systems and path locations is returning blank
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Icon=..\..\..\Program Files (x86)\Common Files\Microsoft Shared\TextTemplating\10.0\TextTemplate.ico
#AutoIt3Wrapper_Outfile=GetCert (x86).exe
#AutoIt3Wrapper_Outfile_x64=GetCert (x64).exe
#AutoIt3Wrapper_Compile_Both=y
#AutoIt3Wrapper_UseX64=y
#EndRegion ;***
it's in the commandline property of the running process
#include "_ProcessListProperties.au3"
#include <Array.au3>
ShellExecute('Notepad.exe')
$avRET = _ProcessListProperties("notepad.exe")
_ArrayDisplay($avRET)
$cmdline = $avRet[1][9]
MsgBox($MB_SYSTEMMODAL, 'Cmdline or where is my process called from? ', $cmdline)
#include <Array.au3>; Only for _ArrayDisplay()
; Install a custom error handler
Global $oMyError