本帖最后由 hapon 于 2009-12-11 10:57 编辑
才学习AU3,请高手勿笑。
如题,是目录路径,非全路径。如c:\install\setup.exe,要得到c:\install\这个目录路径。
另外本论坛的QQ群号是多少呢,想讨教学习。
;检测插件安装目录
$var_rzxsurename = ProcessList("rzxsurename.exe")
for $i = 1 to $var_rzxsurename[0][0]
;MsgBox(64,"进程信息(API)","进程路径是:"&Processpath($var_rzxsurename[$i][1]))
$var_rzxsurename2=Processpath($var_rzxsurename[$i][1])
next
Func Processpath($iPID)
;通过API获取指定PID的进程路径
Local $aProc = DllCall('kernel32.dll', 'hwnd', 'OpenProcess', 'int', BitOR(0x0400, 0x0010), 'int', 0, 'int', $iPID)
If $aProc[0] = 0 Then Return SetError(1, 0, '')
Local $vStruct = DllStructCreate('int[1024]')
DllCall('psapi.dll', 'int', 'EnumProcessModules', 'hwnd', $aProc[0], 'ptr', DllStructGetPtr($vStruct), 'int', DllStructGetSize($vStruct), 'int_ptr', 0)
Local $aReturn = DllCall('psapi.dll', 'int', 'GetModuleFileNameEx', 'hwnd', $aProc[0], 'int', DllStructGetData($vStruct, 1), 'str', '', 'int', 2048)
If StringLen($aReturn[3]) = 0 Then Return SetError(2, 0, '')
Return $aReturn[3]
EndFunc
;删除卡数据库
If FileExists("&$变量\alllostinfo.dat") Then
FileDelete("&$变量\alllostinfo.dat")
MsgBox(48,"卡解封","解封成功。如再提示被禁用,请再运行此程序。",20)
Exit
EndIf |