Windows 10 Remote Desktop Connects with Black Screen then Disconnects

36

10

I've been having this issue since I updated (fresh install) to Windows 10 Professional. I used to connect to my computer via RDP through WAN and LAN with no issues.

After installing W10 and setting up everything correctly (ports, static IP etc) I still can connect, but during the day it randomly kicks me out and I can't successfully log in afterwards. It makes a secure connection and connects, but I get a black screen without a cursor and disconnects a few seconds after that without any errors.

It's an Intel i7 desktop with nVidia GPU with the latest drivers.

Things that I know/tried:

  1. When issue occurs, I can replicate it on Windows, Mac, or iPads/iPhones over LAN or WAN.

  2. Rebooting temporarily fixes the problem, until it starts happening again.

  3. Disabling bitmap caching or changing resolution on RDP client doesn't fix it.

  4. Pressing CTRL + ALT + END doesn't do anything.

  5. Created a new account and tried logging on to that to test if it is account related, still didn't log in.

  6. Did a sfc /scannow to do a system scan and fix corrupt files, it came out with no errors.

  7. I checked the event log and apparently WINLOGON keeps crashing. It only says "the windows logon process has unexpectedly terminated"

I ran out of options to fix this, any help will be appreciated.

asansal

Posted 2015-09-21T22:51:02.690

Reputation: 361

Is it the client or the server that you reboot that fixes the problem? – cdavid – 2015-09-21T23:22:31.527

Have you tried using a VPN and not exposing 3389 to the WAN? – Linef4ult – 2015-09-22T05:36:03.430

Me too. It's not this - http://www.tenforums.com/network-sharing/12445-rdp-w10-disconnected-after-few-seconds.html because I have passwords on all the accounts, and it does the same thing regardless of local console connections status.

– nerdfever.com – 2016-01-09T20:04:22.500

I have been experiencing this issue with server 2012 R2, and while the issue may not be related, the symptoms are very similar. Black screen and rebooting the server fixed it for a while. I don't have an answer, but I have it linked to TermService service crashing, despite not much in the logs indicating it. TermService is unusual since it can't be stopped via services.msc, but you can use tasklist /svc | findstr /C:TermService to identify the Process ID and taskkill /F /PID [process_id] to end the process. Start TermService using net start TermService. I am still working on a solution. – Johnny Keeton – 2016-08-24T02:03:35.680

What happens if you disable the Smart Card Device Enumeration Service? I've experienced this problem on a variety machines and multiple times traced it back to this service. No clue why; other than this service is called when an RDP session is created. – I say Reinstate Monica – 2016-12-01T02:07:08.980

Has anyone managed to resolve this? – mythofechelon – 2017-01-06T16:11:55.347

Also curious if anyone has resolved this issue? I have exactly the same scenario. – Todilo – 2017-12-22T11:38:32.357

1@Todilo See my answer below. – Syntax Error – 2018-03-12T22:39:52.927

This just started happening to me after working fine for years. It happens randomly after being connected a while, and it's either a frozen screen or solid bg color. Really annoying. – Dirigible – 2019-03-28T14:57:20.970

Answers

17

Remote Desktop – Black Screen Of Death

The Issue

Using Remote Desktop the remote screen turns black right after login and you have no control. The issue appears to be caused by Screen Caching and accessing a system with different display resolution or RDP window sizes.

The Solution(s)

  • While logged in and stuck on the black screen of death
    1. Press CTRL+ALT+END, or CTRL+ALT+FN+END on laptops. This calls Task Manager and in most cases you’ll immediately see the Desktop.
    2. If only Task Manager but no Desktop appears try running Explorer from Task Manager: File > New Task > Explorer.exe
  • Try connecting at a different resolution.
  • Access the remote computers Computer Management or Services MMC and cycle the Remote Desktop Services service.
  • Update display drivers, both on the connecting machine and on the machine you are connecting too.
    1. Some users are experiencing this with Nvidia GPUs. The Geforce Experience program has a "Share" feature aka "shadow play"; when enabled some people experience the problem. Try to disable it, restart and see if it helps.
    2. Check the display settings at the remote host and see if there is a phantom monitor present. Might need to change which monitor is the primary one
  • Start a new RDP client on your desktop but BEFORE you click CONNECT, click the SHOW OPTIONS link, click the DISPLAY tab and set the DISPLAY CONFIGURATION to a low resolution like 640×480.
  • Try turning off Fast Startup
    • This feature only works when you do a SHUTDOWN and then Boot. It doesn't effect a RESTART.
    • Go to Control panel, Power Options and select Choose What the Power Buttons Do on the left.
    • Then select Change Settings That are Currently Unavailable near the top center of screen...
    • Lower down on the window, uncheck Fast Startup.

Prevention

  • Disable bitmap caching for your RDP connections
  • Confirm RDP account has full administrative rights on remote system
  • Access the remote computer using consistent resolution – Full screen may help
  • Confirm both systems' video drivers are up to date

Resources

(Google it at Microsoft support sites; I have too low a reputation to post links)

  • Disable Bitmap Caching 2012
  • Hotfix for “Black screen during a Remote Assistance session in Windows Vista, in Windows Server 2008, in Windows 7, or in Windows Server 2008 R2”
  • The lock screen is black or blank and does not respond to keyboard or swipe actions in Windows 10 Technical Preview

Disable Bitmap Caching

dadde

Posted 2015-09-21T22:51:02.690

Reputation: 270

2None of this works, maybe this issue has resurfaced with a different cause.. – Dirigible – 2019-03-28T14:59:21.520

As of 2019/6/28 Windows 10 v1809 the above steps worked. I only needed to perform "While logged in and stuck on the black screen of death " steps 1 & 2 – MickyD – 2019-06-28T02:12:22.947

Another work-around (how I fixed it permanently) is to just install/use the RDC Manager for all RDP: https://www.microsoft.com/en-us/download/details.aspx?id=44989 - I like it better anyway..

– bshea – 2019-07-07T14:39:35.337

3

None of the other answers worked for me, I finally found something that did, after a lot of digging. Use the Group Policy Editor (or download the superior "Policy Plus"), and disable UDP. You can find this in policy rds/client or rds/host/connection/select protocols, or in the registry at SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services\Client

There are a lot of settings to fiddle with in there, you could also try disabling RemoteFX graphics.

Dirigible

Posted 2015-09-21T22:51:02.690

Reputation: 221

2

In my case it was python miniconda, which has known issue spoiling PATH on linux in .bashrc, some details are in my answer

stiv

Posted 2015-09-21T22:51:02.690

Reputation: 169

1

I've had the same problem - switch from 32bit to 24bit colours and it will let you connect as normal. All other settings can be left on their defaults.

Picture of RDP settings with 24bit colours highlighted

Syntax Error

Posted 2015-09-21T22:51:02.690

Reputation: 202

didn't work for me – stiv – 2019-06-05T21:21:29.940

@stiv probably a Windows update breaking stuff – Syntax Error – 2019-06-05T23:47:50.367

please see my answer to the question – stiv – 2019-06-06T09:58:15.830

1

Repeating a workaround documented by @johnny Keeton above, proposing as answer because it worked for me when the other solutions above did not...

tasklist /svc | findstr /C:TermService to identify the Process ID, and
taskkill /F /PID [process_id] to end the process
net start TermService to restart (though it will restart on its own in my experience)

– Johnny Keeton Aug 24 '16 at 2:03

BobHy

Posted 2015-09-21T22:51:02.690

Reputation: 121

0

This might not help but I solved it by turning down the resolution. The problem occured as the monitor I was connecting from was 2560x1440, and the remote computer wouldn't allow that. Turning it down to 1920x1080 worked fine and I am now connected with everything showing.

Unknown

Posted 2015-09-21T22:51:02.690

Reputation: 1

0

I had this issue since I was having different DPI. On my laptop I had DPI set to 125% while a computer I was connecting had 100%. Setting DPI to 100% on laptop solved the problem.

Stanislav Berkov

Posted 2015-09-21T22:51:02.690

Reputation: 101

0

When I have this issue I move the RDP screen to my default screen and maximize the screen. The RDP screen should no longer be black. I then move the RDP to my secondary screen. Not the best work around, but it works.

Roger

Posted 2015-09-21T22:51:02.690

Reputation: 11

0

Had the same issue. The following worked out for me:

  1. Right-click the current Graphics item in Device manager, and select "Update driver".
  2. Choose "Browse my computer for driver software"
  3. Choose "Let me pick from a list of device drivers"
  4. Select "Microsoft Basic Display Adapter"

Adi Lester

Posted 2015-09-21T22:51:02.690

Reputation: 101

0

I had this issue after I installed Oracle VM and a Lubuntu image. Right after the Oracle installation everything was fine and I also managed to install Lubuntu. I've done everything through RDC. Suddenly, the screen went black. I haven't restarted the computer or done anything worth mentioning at all, it just happened. This all happened in one single session.

I then tried restarting the computer manually, I tried all of the above settings which helped other people and I also uninstalled Oracle VM. Nothing helped.

In the end, I restored my computer to the state before I installed Oracle VM with a restore point that was generated automatically by my computer. Now RDC works again and I'm able to see the screen.

tl;dr: use a restore point if RDC used to work but doesn't work anymore

Gašper Čefarin

Posted 2015-09-21T22:51:02.690

Reputation: 88