我想在Windows任务管理器的“应用程序”选项卡(不是“进程”选项卡)中获取正在运行和可见的程序列表,并在HDD上获取它们的位置? 我需要在Delphi中完成它。有人可以帮忙吗?
答案 0 :(得分:4)
据我所知,“任务管理器”中的“应用程序”选项卡是顶级窗口的列表,这些窗口不归其他窗口所有,没有父窗口,也不是工具窗口。在我的Process Info中,我有一个名为AppInfo.pas的单元,它返回一个具有这些特征的窗口列表,该列表与您在任务管理器中看到的列表相匹配。以下是代码的主要部分,它是作为EnumWindows API函数的回调函数编写的:
{$IFDEF DELPHI2007UP}
class function TAppWindowCollection.EnumWinProc(wHandle: HWND; lparam: integer): Bool;
{$ELSE}
function EnumWinProc(wHandle: HWND; lparam: integer): Bool; stdcall;
{$ENDIF}
Const
MAX_TEXT = MAX_PATH;
var
WindowItem : TWindowItem;
strText,strClass : array [0..MAX_TEXT] of char;
IsAppMainWin : Boolean;
begin
//Check if the window is a visible application main window.
IsAppMainWin := IsWindowVisible(wHandle) AND //Visible
(GetWindow(wHandle,GW_OWNER) = 0) AND //Not owned by other windows
(GetParent(wHandle) = 0) AND //Does not have any parent
(GetWindowLong(wHandle,GWL_EXSTYLE) AND WS_EX_TOOLWINDOW = 0); //Not a tool window
if IsAppMainWin then
begin
WindowItem := TAppWindowCollection(lparam).Add;
GetWindowText(wHandle,strText,MAX_TEXT);
GetClassName(wHandle,strClass,MAX_TEXT);
WindowItem.FCaption := strText;
WindowItem.FHandle := wHandle;
WindowItem.FWindowClass := strClass;
GetWindowThreadProcessId(wHandle,WindowItem.FProcessID);
end;
Result := True;
end;
有关完整源代码,您可以参考AppInfo.pas。
并获取其在HDD上的位置
这些只是窗户。如果要获取与每个项目对应的EXE文件的路径,则应首先使用GetWindowThreadProcessID API函数找到拥有此窗口的进程。这就是我在上面的代码中所做的。获得进程ID后,您可以从中获取进程句柄,并枚举其模块。第一个模块是主EXE文件。我在我的TProcessInfo组件中实现了它,它与AppInfo.pas包含在同一个包中。
答案 1 :(得分:2)
这是一个完整的独立解决方案(不再有破损的链接)
program ApplicationList;
{$APPTYPE CONSOLE}
{$R *.res}
uses
System.SysUtils,
Winapi.Windows,
Winapi.PsAPI;
function GetPathFromPID( const PID : cardinal ) : string;
var
hProcess : THandle;
path : array [0 .. MAX_PATH - 1] of char;
begin
hProcess := OpenProcess( PROCESS_QUERY_INFORMATION or PROCESS_VM_READ, false, PID );
if hProcess <> 0
then
try
if GetModuleFileNameEx( hProcess, 0, path, MAX_PATH ) = 0
then
RaiseLastOSError;
Result := path;
finally
CloseHandle( hProcess )
end
else
RaiseLastOSError;
end;
function EnumWinProc( wHandle : hWnd; lparam : integer ) : Bool; stdcall;
Const
MAX_TEXT = MAX_PATH;
var
strText, strClass : array [0 .. MAX_TEXT] of char;
strPath : string;
IsAppMainWin : Boolean;
ProcId : cardinal;
begin
// Check if the window is a visible application main window.
IsAppMainWin := IsWindowVisible( wHandle ) AND // Visible
( GetWindow( wHandle, GW_OWNER ) = 0 ) AND // Not owned by other windows
( GetParent( wHandle ) = 0 ) AND // Does not have any parent
( GetWindowLong( wHandle, GWL_EXSTYLE ) AND WS_EX_TOOLWINDOW = 0 ); // Not a tool window
if IsAppMainWin
then
begin
GetWindowText( wHandle, strText, MAX_TEXT );
GetClassName( wHandle, strClass, MAX_TEXT );
GetWindowThreadProcessID( wHandle, ProcId );
try
strPath := GetPathFromPID( ProcId );
except
strPath := '???';
end;
WriteLn( ProcId, ' - ', strClass, ' - ', strText, ' - ', strPath );
end;
Result := True;
end;
procedure DoEnumWindows;
var
FirstWnd : cardinal;
begin
EnumWindows( @EnumWinProc, cardinal( @FirstWnd ) );
end;
begin
try
DoEnumWindows;
except
on E : Exception do
WriteLn( E.ClassName, ': ', E.Message );
end;
ReadLn;
end.