Franck Dernoncourt Asked: 2025-02-23 07:57:42 +0800 CST2025-02-23 07:57:42 +0800 CST 2025-02-23 07:57:42 +0800 CST 如何知道我的 Windows 计算机是否已连接到物理显示器? 772 我对 Windows 10 和 11 有以下疑问:如何知道我的 Windows 计算机是否已连接到物理显示器?我无法物理访问计算机,只能远程访问。 windows 2 个回答 Voted Best Answer ynot01 2025-02-23T12:34:11+08:002025-02-23T12:34:11+08:00 在 Powershell 中运行Get-CimInstance -ClassName Win32_PnPEntity | Where-Object Service -eq 'Monitor'将输出所有连接的监视器。 Franck Dernoncourt 2025-02-23T17:47:06+08:002025-02-23T17:47:06+08:00 可以使用MonitorInfoView (免费、便携): 在 Windows 10 21H1 Pro 和 11 24H2 Pro 上测试。
在 Powershell 中运行
Get-CimInstance -ClassName Win32_PnPEntity | Where-Object Service -eq 'Monitor'
将输出所有连接的监视器。可以使用MonitorInfoView (免费、便携):
在 Windows 10 21H1 Pro 和 11 24H2 Pro 上测试。