检索在Windows上打开的所有窗口

时间:2012-09-21 11:25:35

标签: c++ winapi powershell

我尝试使用简单的C ++代码检索Windows上所有打开窗口的一些信息(x,y,width,height和title)(见下文):

#include <iostream>
#include <windows.h>
using namespace std;

BOOL CALLBACK EnumWindowsProc(HWND hwnd, LPARAM lParam);

int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR pCmdLine, int     iCmdShow)
{
    EnumWindows(EnumWindowsProc, NULL);
    //system("PAUSE");
    return 0;
}

BOOL CALLBACK EnumWindowsProc(HWND hwnd, LPARAM lParam)
{
char class_name[255];
char title[255];
int tmpWidth;
int tmpHeight;
HWND currenthwnd;
RECT WindowRect;

GetClassName(hwnd,class_name, sizeof(class_name));
GetWindowText(hwnd,title,sizeof(title));
GetWindowRect(hwnd,&WindowRect);

//if(WindowRect.left>-50 && title != "" && title != NULL && strlen(title)>0){
    tmpHeight = WindowRect.bottom - WindowRect.top;
    tmpWidth = WindowRect.right - WindowRect.left;
    cout <<"@@##@@"<<title<<",(@@#@@)";
    cout <<WindowRect.left<<",(@@#@@)";
    cout <<WindowRect.top<<",(@@#@@)";
    cout <<tmpWidth<<",(@@#@@)";
    cout <<tmpHeight<<",(@@#@@)";
    currenthwnd=GetForegroundWindow();
    if (currenthwnd!=hwnd){
       cout <<title<<",(@@#@@)false";
    }else{
       cout <<title<<",(@@#@@)true";
    }
 //}

 return TRUE;
}

但是我遇到了这个代码的一些问题,我也尝试使用带有Get-Process功能的PowerShell,但是这个函数不会返回所有打开的窗口,而是返回所有现有的进程。

如何检索所有打开窗口的标题,x,y,高度?

感谢您的帮助

1 个答案:

答案 0 :(得分:2)

在powershell中,您可以使用WASP模块并编写如下内容:

Get-Process | Where-Object {$_.MainWindowTitle -ne ""}  | 
% {$_.processname + "-" + $_.mainwindowtitle;
       Get-WindowPosition -Window $_.handle }

这是我的实际PowerShell窗口的结果示例:

powershell - Posh - Admin
Location : {X=4,Y=44}
Size     : {Width=885, Height=129}
X        : 4
Y        : 44
Width    : 885
Height   : 129
Left     : 4
Top      : 44
Right    : 889
Bottom   : 173
IsEmpty  : False