How to increase performance of Remote Desktop

15

5

How can I increase performance of Remote Desktop on windows XP sp3? A better network connection is not an option, this is for at work. I have suggested a network upgrade to my boss and it is not in the budget right now, but I need to access my home computer and right now it is somewhat unusable.

H B K

Posted 2009-07-27T06:22:48.177

Reputation: 176

I have fiber optic connection at my house and downloads easily go 1mb/sec and higher, so i don't think so... – H B K – 2009-07-27T06:38:56.053

4If you need to access home computer from work, upload is important. – Marek Grzenkowicz – 2009-07-27T07:14:04.530

Answers

16

The best way is to simply turn off unnecessary features, and tone down the others.

With Remote desktop open, click the [ Options >> ] button:

alt text

The window size will increase and you will see a number of tabs as shown here:

alt text

These are the main tabs to look at to increase your performance:

The "Display" tab

You can decrease the size in which you will view the remote desktop in this tab. Lowering this greatly improves performance, just make sure you can still read text and see what you're doing.

You can also change the color detail in this tab, If you are simply viewing text, 256 colors is fine, else try 15 or 16-bit if 256 is too low for you.

The "Local Resources" tab

The only main bandwidth eater in this tab is the remote sounds. If you do not need to hear sounds from the remote computer, I'd suggest turning this off altogether.

The "Experience" tab

In this tab I'd suggest unchecking every checkbox except for "Bitmap caching". Bitmap caching will download images that you will see most often such as the start menu image or system tray, and save them locally to your PC. For a low bandwidth user this is beneficial, as these "chunks" of the screen are not resent each refresh.

John T

Posted 2009-07-27T06:22:48.177

Reputation: 149 037

15

I know this is an old topic, but for others, in your RDP file make sure this line is set to 1:

bitmapcachepersistenable:i:1

You can do this from the UI, but then add this magic line too:

bitmapCacheSize:1:32000

This will max out your bitmap cache so you request bitmap data less frequently.

Bernesto

Posted 2009-07-27T06:22:48.177

Reputation: 251

When I added the second line some animations (web page dialog slide w/fade) stuttered more. – crokusek – 2020-02-14T02:16:29.037

bitmapCacheSize:1:32000 is precisely what I needed! It raises the bitmap cache from 1.5MB to 32MB. Now switching between browser tabs with graphics is a lot faster. MSDN's list of rdp file options – netvope – 2011-12-22T09:32:16.807

2FYI for readers unfamiliar with an RDP file: it is created when you click that Save As button while looking at all the available Options for the connection. – sfuqua – 2013-02-27T15:00:05.443

1

Disable visual styles, set a solid color background, etc ; go to My Computer properties -> Advanced -> Performance Settings, and select adjust for best performance.

jtimberman

Posted 2009-07-27T06:22:48.177

Reputation: 20 109

Interesting. Some people on neowin found instead that enabling both Desktop Composition and Visual Styles actually helped their performance.

– gmatht – 2015-01-27T15:23:15.007

this is not a problem if you tweak the settings like John T mentions – pavsaund – 2009-07-27T08:46:04.687

0

You might want to consider using a remote desktop application that does all of the above for you.

GoToAssist from Citrix will actively reduce the data being sent by optimizing the image. You can try it for free. Works well for anything down as far as a 512Kbit / 128Kbit ADSL connection

It can be quite restrictive as to what you do on the PC you're remoting in to. For example, in Vista, any network connection properties cannot be touched remotely. There may be a way around this but I'm not sure of it.

I've only used it from a support point of view but for what it does, I think its pretty ingenious

Ciaran

Posted 2009-07-27T06:22:48.177

Reputation: 4 078

0

Eric

Posted 2009-07-27T06:22:48.177

Reputation: 1

3Hi Eric, welcome to Super User. Can you summarise why lowering the colour isn't helpful? Answers that are either solely (or mostly) a link are discouraged here. – bertieb – 2015-08-10T18:05:15.113

0

A major factor that hasn't been mentioned yet is the hardware installed on the computer. It doesn't matter if you have a fiber optic connection if the hardware on the computer cannot handle the incoming/outgoing information fast enough. This bottleneck usually takes place in the ethernet adapter/network card. Many older XP machines and many laptops, even new ones, do not have the ability to make full use of high speed connections. This is because the network adapter is usually maxed out at 100mbit.

To put that into perspective, 100megabits per second is 12.5 megabytes per second, not taking into consideration including any overhead on the network, host/remote PCs, and any traffic on the larger internet.

Optimal speeds can be achieved by pairing a gigabit ethernet card with a router/switch that can also handle the gigabit standard. This improves the speed to a maximum of 1000mbps (~1gbps) or 125 megabytes per second. You can learn more about the speeds and standards by reading this article on it.

Daedalus

Posted 2009-07-27T06:22:48.177

Reputation: 341