Feature Request: Monitor Info from WMI on Windows hosts
Nobody has claimed this yet.
- Dominant language
- C++
- Stars
- 23.6k
- Forks
- 2.6k
- Avg merge
- 6d 7h
- Merged PRs (30d)
- 14
Description
Feature request
What new feature do you want?
Create a new table for Windows hosts that displays the video monitor information for monitors connected to the queried host per the WMI Class WmiMonitorID. This includes each monitor's manufacturer, serial number, model, and the week/year of manufacture.
How is this new feature useful?
Our specific use case is to be able to remotely query this information from all hosts in an enterprise fleet. The collected results can then be used to update records in a CMDB to relate Monitor assets to Workstation assets.
How can this be implemented?
Should just be a case of querying the class in the root/wmi namespace and casting the arrays of uint16 values as strings.
An example WMI command from the Microsoft documentation is:
gwmi WmiMonitorID -Namespace root\wmi | ForEach-Object {($_.UserFriendlyName -ne 0 | foreach {[char]$_}) -join ""; ($_.SerialNumberID -ne 0 | foreach {[char]$_}) -join ""}
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
No repository files, tests, or entry points are named. Start by reviewing the WmiMonitorID documentation and the root\wmi namespace query described in the issue. Done means a Windows-host table reports each connected monitor's manufacturer, serial number, model, and manufacture week/year.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- cpp
- Domain
- operating-systems
- Issue type
- Feature
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 42/100