Click here to Skip to main content
15,887,746 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
AnswerRe: Is anyone facing this issue with their external displays? If so... have you been able to solve it? Pin
snorkie18-May-23 2:57
professionalsnorkie18-May-23 2:57 
AnswerRe: Is anyone facing this issue with their external displays? If so... have you been able to solve it? Pin
Dave Kreskowiak18-May-23 3:05
mveDave Kreskowiak18-May-23 3:05 
AnswerRe: Is anyone facing this issue with their external displays? If so... have you been able to solve it? Pin
dandy7218-May-23 3:14
dandy7218-May-23 3:14 
AnswerRe: Is anyone facing this issue with their external displays? If so... have you been able to solve it? Pin
0x01AA18-May-23 3:25
mve0x01AA18-May-23 3:25 
AnswerRe: Is anyone facing this issue with their external displays? If so... have you been able to solve it? Pin
Kornfeld Eliyahu Peter18-May-23 3:34
professionalKornfeld Eliyahu Peter18-May-23 3:34 
AnswerRe: Is anyone facing this issue with their external displays? If so... have you been able to solve it? Pin
rnbergren18-May-23 3:41
rnbergren18-May-23 3:41 
GeneralRe: Is anyone facing this issue with their external displays? If so... have you been able to solve it? Pin
jschell18-May-23 6:10
jschell18-May-23 6:10 
AnswerRe: Is anyone facing this issue with their external displays? If so... have you been able to solve it? Pin
StarNamer@work18-May-23 3:44
professionalStarNamer@work18-May-23 3:44 
I have a different setup which uses multiple USB-to-DVI adapters to drive several displays from my laptop via a dock and a KVM switch.

Due the the chains of USB hubs (some internal to the laptop) it's often the case that one or more displays don't come up, either on power on or when I do a keyboard/display/mouse switch.

I found a Windows-provided utility PNPUTIL which will list PNP devices which have problems so I parse the output to issue disable and enable commands for each one. This resets them and they come online so I don't have to go round unplugging and plugging in devices!

PowerShell
pnputil /enum-devices /problem|select-string "Instance ID"|Foreach-object {$_ -match "Instance ID:\s+(?<root>.*)";$x = $matches['root'];Invoke-Expression -Command "pnputil /disable-device ""$x""";Invoke-Expression -Command "pnputil /enable-device ""$x"""}

Since HDMI connections must be Plug-N-Play in a similar way this might work for them too. I don't have an HDMI connected monitor to test.
AnswerRe: Is anyone facing this issue with their external displays? If so... have you been able to solve it? Pin
Gerry Schmitz18-May-23 4:11
mveGerry Schmitz18-May-23 4:11 
AnswerRe: Is anyone facing this issue with their external displays? If so... have you been able to solve it? Pin
Jeremy Falcon18-May-23 4:13
professionalJeremy Falcon18-May-23 4:13 
AnswerRe: Is anyone facing this issue with their external displays? If so... have you been able to solve it? Pin
Wizard of Sleeves18-May-23 21:28
Wizard of Sleeves18-May-23 21:28 
AnswerRe: Is anyone facing this issue with their external displays? If so... have you been able to solve it? Pin
Fabio Franco18-May-23 22:18
professionalFabio Franco18-May-23 22:18 
AnswerRe: Is anyone facing this issue with their external displays? If so... have you been able to solve it? Pin
Peter Gorod19-May-23 0:14
Peter Gorod19-May-23 0:14 
AnswerRe: Is anyone facing this issue with their external displays? If so... have you been able to solve it? Pin
Member 1481769519-May-23 2:24
Member 1481769519-May-23 2:24 
AnswerRe: Is anyone facing this issue with their external displays? If so... have you been able to solve it? Pin
Rich Shealer19-May-23 4:09
Rich Shealer19-May-23 4:09 
AnswerRe: Is anyone facing this issue with their external displays? If so... have you been able to solve it? Pin
Bill S19-May-23 5:56
professionalBill S19-May-23 5:56 
AnswerRe: Is anyone facing this issue with their external displays? If so... have you been able to solve it? Pin
LucidDev19-May-23 7:27
LucidDev19-May-23 7:27 
GeneralWSO CCC OTD 2023-05-18 Pin
OriginalGriff17-May-23 21:34
mveOriginalGriff17-May-23 21:34 
GeneralRe: WSO CCC OTD 2023-05-18 Pin
FreedMalloc17-May-23 22:43
FreedMalloc17-May-23 22:43 
GeneralRe: WSO CCC OTD 2023-05-18 - we have a winner! Pin
OriginalGriff17-May-23 22:49
mveOriginalGriff17-May-23 22:49 
GeneralRe: WSO CCC OTD 2023-05-18 - we have a winner! Pin
jsc4217-May-23 23:01
professionaljsc4217-May-23 23:01 
GeneralRe: WSO CCC OTD 2023-05-18 - we have a winner! Pin
OriginalGriff17-May-23 23:19
mveOriginalGriff17-May-23 23:19 
GeneralRe: WSO CCC OTD 2023-05-18 Pin
pkfox18-May-23 3:08
professionalpkfox18-May-23 3:08 
GeneralRe: WSO CCC OTD 2023-05-18 Pin
FreedMalloc18-May-23 4:06
FreedMalloc18-May-23 4:06 
GeneralWordle 698 Pin
Sandeep Mewara17-May-23 17:37
mveSandeep Mewara17-May-23 17:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.