gpt4 book ai didi

powershell - 如何通过Powershell中的进程获取所有窗口句柄?

转载 作者:行者123 更新时间:2023-12-04 05:12:22 28 4
gpt4 key购买 nike

我有这个脚本

Get-Process | Where-Object {$_.MainWindowTitle -like "*total*"}  

产生这些信息
Handles  NPM(K)    PM(K)      WS(K) VM(M)   CPU(s)     Id ProcessName                                                                     
------- ------ ----- ----- ----- ------ -- -----------
362 23 19432 32744 324 3.86 6880 TotalCmd64

所以我有进程ID。
*Total*应用程序有许多自己打开的窗口。

问题

我如何迭代(使用 powershell)它的所有窗口(这样我才能得到它们的窗口句柄)?

注意:我的目标是什么?

enter image description here :

在 Visual Studio 中寻找(例如):我正在运行应用程序。
但应用程序有自己的打开窗口。

我希望子窗口是 TOPMOsT。我已经有了在最上面制作窗口的脚本。但我需要它的句柄号。

最佳答案

首先,您应该查看 WASP,看看它是否适合您的需求:http://wasp.codeplex.com/

其次,我修改了这里的代码 http://social.technet.microsoft.com/Forums/windowsserver/en-US/c3cd3982-ffc5-4c17-98fc-a09c555e121c/get-all-child-window-titles?forum=winserverpowershell

创建一个将 MainWindowHandle 作为输入的函数,并将返回一个带有子句柄 ID 的对象(它还将列出任何窗口标题,如果有的话)。

我希望这些方法之一能给你你需要的东西:)

function Get-ChildWindow{
[CmdletBinding()]
param (
[Parameter(ValueFromPipeline = $true, ValueFromPipelinebyPropertyName = $true)]
[ValidateNotNullorEmpty()]
[System.IntPtr]$MainWindowHandle
)

BEGIN{
function Get-WindowName($hwnd) {
$len = [apifuncs]::GetWindowTextLength($hwnd)
if($len -gt 0){
$sb = New-Object text.stringbuilder -ArgumentList ($len + 1)
$rtnlen = [apifuncs]::GetWindowText($hwnd,$sb,$sb.Capacity)
$sb.tostring()
}
}

if (("APIFuncs" -as [type]) -eq $null){
Add-Type @"
using System;
using System.Runtime.InteropServices;
using System.Collections.Generic;
using System.Text;
public class APIFuncs
{
[DllImport("user32.dll", CharSet = CharSet.Auto, SetLastError = true)]
public static extern int GetWindowText(IntPtr hwnd,StringBuilder lpString, int cch);

[DllImport("user32.dll", SetLastError=true, CharSet=CharSet.Auto)]
public static extern IntPtr GetForegroundWindow();

[DllImport("user32.dll", SetLastError=true, CharSet=CharSet.Auto)]
public static extern Int32 GetWindowThreadProcessId(IntPtr hWnd,out Int32 lpdwProcessId);

[DllImport("user32.dll", SetLastError=true, CharSet=CharSet.Auto)]
public static extern Int32 GetWindowTextLength(IntPtr hWnd);

[DllImport("user32")]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool EnumChildWindows(IntPtr window, EnumWindowProc callback, IntPtr i);
public static List<IntPtr> GetChildWindows(IntPtr parent)
{
List<IntPtr> result = new List<IntPtr>();
GCHandle listHandle = GCHandle.Alloc(result);
try
{
EnumWindowProc childProc = new EnumWindowProc(EnumWindow);
EnumChildWindows(parent, childProc,GCHandle.ToIntPtr(listHandle));
}
finally
{
if (listHandle.IsAllocated)
listHandle.Free();
}
return result;
}
private static bool EnumWindow(IntPtr handle, IntPtr pointer)
{
GCHandle gch = GCHandle.FromIntPtr(pointer);
List<IntPtr> list = gch.Target as List<IntPtr>;
if (list == null)
{
throw new InvalidCastException("GCHandle Target could not be cast as List<IntPtr>");
}
list.Add(handle);
// You can modify this to check to see if you want to cancel the operation, then return a null here
return true;
}
public delegate bool EnumWindowProc(IntPtr hWnd, IntPtr parameter);
}
"@
}
}

PROCESS{
foreach ($child in ([apifuncs]::GetChildWindows($MainWindowHandle))){
Write-Output (,([PSCustomObject] @{
MainWindowHandle = $MainWindowHandle
ChildId = $child
ChildTitle = (Get-WindowName($child))
}))
}
}
}

您可以直接从 Get-Process 的结果管道它,如下所示:
Get-Process | Where-Object {$_.ProcessName -eq 'OUTLOOK'} | Get-ChildWindow

关于powershell - 如何通过Powershell中的进程获取所有窗口句柄?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25369285/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com