在 Windows 命令 shell 上取得和設定視窗位置?

在 Windows 命令 shell 上取得和設定視窗位置?

我正在尋找一種從命令 shell 獲取和設定視窗的位置和大小的方法。

然而我只能找到如何使用 PowerShell 來做到這一點:

Add-Type @"
using System;
using System.Runtime.InteropServices;
public class Window {
    [DllImport("user32.dll")]
    [return: MarshalAs(UnmanagedType.Bool)]
    public static extern bool GetWindowRect(IntPtr hWnd, out RECT lpRect);
}
public struct RECT
{
    public int Left;
    public int Top;
    public int Right;
    public int Bottom;
}
"@

$Handle = (Get-Process -Id $Args[0]).MainWindowHandle
$WindowRect = New-Object RECT
$GotWindowRect = [Window]::GetWindowRect($Handle, [ref]$WindowRect)
ConvertTo-Json($WindowRect)

是否有在(非 powershell)命令列中執行此操作的等效項?

相關內容