猿问
回到首页
个人中心
反馈问题
注册登录
下载APP
首页
课程
实战
体系课
手记
专栏
慕课教程
如何获取显示器的型号和序列号?
我需要获取连接到我的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}
0
0
0
打开App,查看更多内容
随时随地看视频
慕课网APP
相关分类
Python
继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续