Remote desktop graphics card

26,100

Solution 1

Firstly, you are getting your terms mixed up. CUDA is an NVIDIA technology for programming their GPU (and other things, but that's the simplest description).

Microsoft's RDP uses a it's own graphics driver which converts the rendered screen into network packets to send to the client.

This is the core of how RDP works and you cannot change it.

On the server, RDP uses its own video driver to render display output by constructing the rendering information into network packets by using RDP protocol and sending them over the network to the client. On the client, RDP receives rendering data and interprets the packets into corresponding Microsoft Windows graphics device interface (GDI) API calls.

Source: http://msdn.microsoft.com/en-us/library/aa383015(v=vs.85).aspx

Solution 2

Everything in the above answer is correct except for "This is the core of how RDP works and you cannot change it". Never say never.

There are two ways to utilize a better graphics driver over RDP without 3rd party slow laggy software and without modifying any windows DLLs.

  1. (super hard) Install windows server 2012 r2 on a physical host. Then use Hyper V to create a virtual desktop environment and install your OS as one of those virtual desktops. Install and configure the server roles for Remote Desktop services. Then you will be able to add a virtualized GPU to your virtual machines running on the server. When you RDP to those machines they will use RemoteFX. RemoteFX is capable of 3d rendering and DX11.

  2. (medium hard) Install windows server 2008 r2 on a physical host. Install the server role for remote desktop services. With this installed there is a registry setting that will allow you to pass your physical GPU rendering on to RDP users. There is also one that lets you use the vGPU called RemoteFX if you want. Yes, you can even run a server with no physical GPU. This method ONLY works on windows server 2008 R2.

RDP stands for Remote Desktop PROTOCOL. It is simply a step by step procedure on how to break down the image, sound, and control variables into network packet frames to send. RDP has nothing to do with the rendering or hardware acceleration. If you look at your event viewer right after you "RDP" into a machine, you can find where windows originally loads the graphics drivers for your local machine, then immediately after, disables those and loads the default terrible diver.

Share:
26,100

Related videos on Youtube

Anthony
Author by

Anthony

Computing and Systems student, gamer, knowledgeable with computers, programming etc.

Updated on September 18, 2022

Comments

  • Anthony
    Anthony over 1 year

    So as most people know, when you use RDP to connect to your desktop, it disables the graphics card and uses generic CUDA.

    I don't want Windows to revert to using CUDA instead of the Graphics Card. I have a GTX 780ti in the computer but it isn't being used by RDP. Is there any way to force Windows to use the hardware graphics card?

    I've tried TightVNC, RealVNC and LogMeIn, but I want to use RDP as it is the fastest and works best for me.

    • Ƭᴇcʜιᴇ007
      Ƭᴇcʜιᴇ007 over 10 years
    • Shevek
      Shevek over 10 years
      AFAICT, RemoteFX is a HyperV related product and only applies to Windows Server products and HyperV virtualised hosts
    • Shevek
      Shevek over 10 years
      RemoteFX is not for consumer GPUs: Graphics cards that meet these are typically professional workstation products such as ATI/AMD's FirePro, v5800, v5900, v7800, v7900, v8800, v9800, and Nvidia's Quadro 2000, 3800, 4000, 4800, 5000, 5800, 6000, Quadro FX 2800M and 880M, QuadroPlex 7000 and Tesla M2070Q
    • Logman
      Logman over 10 years
      RemoteFX can be used on a windows 8, client and host. vGPU use is available to a Windows 8 Ent. and a Windows 7 Ent. remote computer - blogs.msdn.com/b/rds/archive/2012/11/26/… You can run Hyper-v on a Windows 8 host, so you could possibly run a Windows 8 Ent on top of a Windows 8 Hyper-V...
  • Frank Thomas
    Frank Thomas over 10 years
    +1; This is why sometimes a remote host vidcard driver update will break RDP.
  • Anthony
    Anthony over 10 years
    So I have to use another program, which will utilize the graphics card but will be slower.
  • Zulgrib
    Zulgrib almost 8 years
    There is a registry setting to pass the GPU to an RDP session, thank you, but could you give more precise informations on this ?
  • Matt
    Matt about 6 years
    This answer is incorrect on many ends: First, you can very much configure many settings of RDP via setting properties in Group Policy. Then RDP definitely does use GPU processing power if a GPU is present in the host. In that sense it is completely irrelevant whether RDP uses its own video driver or not. The video driver used to render the desktop image accesses present GPU hardware.