如何获取显示器的型号和序列号?

我需要获取连接到我的PC的显示器的型号和序列号。如果它在Python中实现会更好,但是在powershell中也可以。


肥皂起泡泡
浏览 311回答 1
1回答

噜噜哒

我在下面的链接中找到了一些信息。溶液使用wmi类,我们可以从监视器中获取信息,然后对于每个监视器从字段中获取值并将其写入文件。$Monitors = Get-WmiObject WmiMonitorID -Namespace root\wmi$LogFile = "d:\monitors.txt""Manufacturer,Name,Serial" | Out-File $LogFileForEach ($Monitor in $Monitors){    $Manufacturer = ($Monitor.ManufacturerName|where {$_ -ne 0}|ForEach{[char]$_}) -join ""    $Name = ($Monitor.UserFriendlyName  |where {$_ -ne 0}| ForEach{[char]$_}) -join ""    $Serial = ($Monitor.SerialNumberID  |where {$_ -ne 0}| ForEach{[char]$_}) -join ""    "$Manufacturer,$Name,$Serial" | Out-File $LogFile -append}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python