I just get a black screen remoting (RDP) into Windows 8 box

14

1

When I remote into my Windows 8 desktop with Windows 7 it works fine but when try with Windows 8 I get an empty screen after it connects. Keyboard commands work despite the screen being black; I can open Explorer etc. using them and they persist when I reconnect with Windows 7.

Any ideas on what is wrong?

Michael

Posted 2012-12-24T18:50:05.003

Reputation: 303

Have you fully patched both computers including option updates? (RDP version 8.0 has come out several weeks ago on Windows 7 and maybe also on 8). – harrymc – 2013-01-10T15:06:56.437

In addition to @harrymc's suggestion, take a look at the source Win8 RDP settings. Also, are the source (Win7 and Win8) hosts on the same LAN as the target Win8, and the NIC and Comms port speeds verified OK? Lastly, try different NIC ports for the source hosts on your switch. – Lizz – 2013-01-11T06:35:16.833

Does changing the Windows 8 theme have any effect? On the Experience tab for Remote Desktop Connection, what happens if you connect choosing Modem (28.8 Kbps) and deselect Bitmap Caching? – user314104 – 2013-07-30T01:13:04.697

Answers

4

Open the Local Group Policy Editor on the machine you are running the Remote Desktop client.

Under Computer Configuration>Administrative Templates>Windows Components>Remote Desktop Services?Remote Desktop Connection Client

Enable the setting called Turn Off UDP On Client

Now I'm able to connect without issue... somehow UDP isn't making it through and this change fixes the problem!

Should anyone wish to change the setting from registry rather than through group policy, here's the place to do that:

HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services\Client

Create\set fClientDisableUDP (REG_DWORD) to 1.

PS> Set-ItemProperty -Path 'HKLM:\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services\Client' -Name fClientDisableUDP -Value 1

Michael

Posted 2012-12-24T18:50:05.003

Reputation: 303

6

This Technet thread suggests:

  1. Type Ctrl + Alt + End
  2. Then cancel
  3. Then exiting and reconnecting

You could also try disabling bitmap caching using this KB article.

K.A.Monica

Posted 2012-12-24T18:50:05.003

Reputation: 5 887

Ctrl+Alt+End worked for me, it brought up the Options where I could start the Task Manager and then could tab to other windows. I found out that I had left Firefox in fullscreen mode, and it was not refreshing, causing the black screen. – user1113270 – 2015-08-20T15:33:19.097

0

I spent hours diagnosing this issue, "Turn Off UDP On Client" works around it for me also.

Turns out our office Draytek 2820 has a UDP flood DoS attack trigger which was set to 300 packets / second. Upping to 1000 packets per second resolves this for me.

Andrew Edwards

Posted 2012-12-24T18:50:05.003

Reputation: 1

Yes it does. "Any idea what is wrong?" Yes. My router UDP flood attack was false triggering. Exactly the same symptoms and that fixed it. This answers the question. – Andrew Edwards – 2014-07-13T12:21:20.383