使用 powershell 在 windows 10 中设置主显示器

使用 powershell 在 windows 10 中设置主显示器

我在办公室里有一台 Windows 10 笔记本电脑,连接到戴尔显示器。我有远程桌面连接和 ssh 访问权限。

目前,主显示器是笔记本电脑屏幕。有没有办法将主显示器更改为戴尔显示器?

或者将显示设置更改为镜像。

DisplaySwitch.exe不执行任何操作。 也没有错误消息。

PS> Get-WmiObject -Namespace "root\WMI" -Class "WMIMonitorID"

__GENUS                : 2
__CLASS                : WmiMonitorID
__SUPERCLASS           : MSMonitorClass
__DYNASTY              : MSMonitorClass
__RELPATH              : WmiMonitorID.InstanceName="DISPLAY\\BOE06F9\\4&15a49d7&0&UID265988_0"
__PROPERTY_COUNT       : 9
__DERIVATION           : {MSMonitorClass}
__SERVER               : DESKTOP-VFR2B3O
__NAMESPACE            : root\WMI
__PATH                 : \\DESKTOP-VFR2B3O\root\WMI:WmiMonitorID.InstanceName="DISPLAY\\BOE06F9\\4&15a49d7&0&UID265988_0"
Active                 : True
# this is the laptop screen, I want to use display 2
InstanceName           : DISPLAY\BOE06F9\4&15a49d7&0&UID265988_0
ManufacturerName       : {66, 79, 69, 0...}
ProductCodeID          : {48, 54, 70, 57...}
SerialNumberID         : {48, 0, 0, 0...}
UserFriendlyName       :
UserFriendlyNameLength : 0
WeekOfManufacture      : 38
YearOfManufacture      : 2016
PSComputerName         : DESKTOP-VFR2B3O
PS> Get-WmiObject win32_desktopmonitor


DeviceID            : DesktopMonitor1
DisplayType         :
MonitorManufacturer :
Name                : Default Monitor
ScreenHeight        :
ScreenWidth         :

DeviceID            : DesktopMonitor2
DisplayType         :
MonitorManufacturer : (Standard monitor types)
Name                : Generic PnP Monitor
ScreenHeight        : 1080
ScreenWidth         : 1920

相关内容