mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
95865bfd24
* first push (associated issues: #17951 #761) * More docs * Fix spelling * More docs * Fix spelling * Push * Fix link * Fix spelling * Update bug-report-tool.md * Update verification-scripts.md * Update doc/devdocs/tools/bug-report-tool.md Co-authored-by: Heiko <61519853+htcfreek@users.noreply.github.com> * Update doc/devdocs/tools/bug-report-tool.md * Update doc/devdocs/tools/styles-report-tool.md Co-authored-by: Heiko <61519853+htcfreek@users.noreply.github.com> * Update doc/devdocs/tools/build-tools.md * Update doc/devdocs/tools/clean-up-tool.md --------- Co-authored-by: Heiko <61519853+htcfreek@users.noreply.github.com> Co-authored-by: Stefan Markovic <57057282+stefansjfw@users.noreply.github.com>
23 lines
1001 B
Markdown
23 lines
1001 B
Markdown
# [Monitor info report tool](/tools/MonitorReportTool)
|
|
|
|
A small diagnostic tool which helps identifying WinAPI bugs related to the physical monitor detection. When launched, it creates a log file like this:
|
|
|
|
```text
|
|
GetSystemMetrics = 2
|
|
GetMonitorInfo OK
|
|
EnumDisplayDevices OK:
|
|
DeviceID = \\?\DISPLAY#VSCBD34#5&25664547&0&UID4355#{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}
|
|
DeviceKey = \Registry\Machine\System\CurrentControlSet\Control\Class\{4d36e96e-e325-11ce-bfc1-08002be10318}\0002
|
|
DeviceName = \\.\DISPLAY1\Monitor0
|
|
DeviceString = Generic PnP Monitor
|
|
GetMonitorInfo OK
|
|
EnumDisplayDevices OK:
|
|
DeviceID = \\?\DISPLAY#ENC2682#5&25664547&0&UID4357#{e6f07b5f-ee97-4a90-b076-33f57bf4eaa7}
|
|
DeviceKey = \Registry\Machine\System\CurrentControlSet\Control\Class\{4d36e96e-e325-11ce-bfc1-08002be10318}\0003
|
|
DeviceName = \\.\DISPLAY2\Monitor0
|
|
DeviceString = Generic PnP Monitor
|
|
EnumDisplayMonitors OK
|
|
```
|
|
|
|
and also duplicates the info to `stdout`.
|