如何使用命令提示符或 powershell 获取 windows 10 中的屏幕分辨率

如何使用命令提示符或 powershell 获取 windows 10 中的屏幕分辨率

我一直在努力奔跑

wmic path Win32_VideoController get VideoModeDescription

它给了我 1920 x 1080,这很好。我更改了分辨率来测试它,它仍然返回相同的结果。

有人知道为什么吗?

我将第一个屏幕设置为 1360 x 768

第二个屏幕设置为 1600 x 900

在此处输入图片描述

答案1

正如所述https://stackoverflow.com/questions/7967699/get-screen-resolution-using-wmi-powershell-in-windows-7

PS> Add-Type -AssemblyName System.Windows.Forms
PS> [System.Windows.Forms.Screen]::AllScreens


BitsPerPixel : 32
Bounds       : {X=0,Y=0,Width=1280,Height=800}
DeviceName   : \\.\DISPLAY1
Primary      : True
WorkingArea  : {X=0,Y=0,Width=1280,Height=770}

BitsPerPixel : 32
Bounds       : {X=1280,Y=0,Width=1920,Height=1200}
DeviceName   : \\.\DISPLAY2
Primary      : False
WorkingArea  : {X=1280,Y=0,Width=1920,Height=1170}

答案2

我在 powershell 中找到了一种方法。

"Background {0}x{1}" -f [System.Windows.Forms.SystemInformation]::PrimaryMonitorSize.Width,[System.Windows.Forms.SystemInformation]::PrimaryMonitorSize.Height

相关内容