Welcome to MSDN Blogs Sign in | Join | Help

Why does my shared clipboard not work? (Part 1)

The TS shared clipboard allows you to copy and paste data between local and remote sessions. When it works its really simple and seamless, but what about when it doesn’t? Diagnosing clipboard problems can be hard and frustrating!

 

The majority of clipboard problems fall into the category of clipboard viewer chain related issues. What is the clipboard viewer chain? Essentially it is a collection of applications which are interested in being notified of updates to the local clipboard. Applications which have registered to be a part of the viewer chain receive a notification whenever the clipboard has been updated. However, there is a major caveat! The clipboard viewer chain is application-controlled. This means that applications in the chain are responsible for:

 

o  Passing on notification messages to the next viewer in the chain

o  Removing other applications from the chain

 

Passing on clipboard update notification messages

 

Assume there are no applications in the viewer chain. Application A joins the chain and it appears as follows:

 

-> A

 

Application B then registers to join the chain. When it does so, it gets told who was previously at the front of the chain, and it is responsible for storing this information. The chain is now:

 

-> B -> A

 

Let’s have C and D join as well (in that order). The chain is now:

 

-> D -> C -> B -> A

 

Now, assume some text is copied to the clipboard. The system looks at who is at the front of the viewer chain and notifies them of the clipboard update. In this case it is D. D does what it needs to and then looks up who is next in the chain by referring to some information it has stored away somewhere. This is where problems can arise. If D is a badly written application (they do exist), then it might not have stored who was previously at the front of the chain when it joined (or maybe there is a bug and it gets the wrong information), and as a result C will not be notified of the update. Hence, we have a broken viewer chain – C, B and A are not told that the clipboard was updated.

 


Removing applications from the viewer chain

 

Assume that the viewer chain looks as follows:

 

-> D -> C -> B -> A

 

B decides that it is time to leave the chain. So, it tells the system that it wants to be removed from the chain. The system then sends a message to the window at the front of the chain which says something like:

 

“Remove B from the chain. A should take B’s place in the chain.”

 

Since D is at the front of the chain, it checks to see if B follows it in the chain. If not, it passes the message on to C. C sees that B follows it in the chain, so it updates its internal structures and now records A as following it in the chain. The chain is now:

 

-> D -> C -> A

 

Of course, this removal process is prone to failure. Say D did not pass the deletion message on. The chain remains as:

 

-> D -> C -> B -> A

 

But, when C tries to send the clipboard update notification to B what will happen? If B has exited then A will not get the notification. If B has not exited it might choose to ignore the notification as it has no obligation to pass it on since it is not part of the chain. Hence, we have a broken chain and A will most likely not be notified of clipboard updates.

 

Now, imagine that B decides to rejoin the chain. Then we will have:

 

-> B -> D -> C -> B -> A

 

This is actually:

 

   +---------+

   V         |

-> B -> D -> C

 

In other words, we have a loop in the viewer chain. Not only will A not be notified of updates, but the update notification will spin between B, D and C continuously!

 


What does all of this have to do with the TS shared clipboard?

 

Okay, so we have discussed some theory, but what does it have to do with the TS shared clipboard? Everything!

 

In the local session the TS client is in the clipboard viewer chain and in the remote session the RDPCLIP virtual channel application is in the viewer chain. When a clipboard update happens in the local session, the TS client is notified and informs RDPCLIP of the changes so it can propagate them to the remote session. Similarly, when a clipboard update happens in the remote session, RDPCLIP is notified and informs the TS client of the changes.

 

Now, say that the local clipboard viewer chain is broken so that the TS client is not notified of clipboard updates. That means that clipboard changes will not be sent to the remote session, resulting in a user being unable to paste data into the remote session as the clipboard there is not updated with the latest formats. Similarly, if the clipboard viewer chain in the remote session is broken so that RDPCLIP does not get update notifications, then clipboard changes will not be propagated to the local session and a user will be unable to paste data from the remote session.

 

What is the solution to a broken viewer chain? If remote to local session copy and paste does not work, you can try to kill rdpclip.exe and then restart it. You can use Task Manager to kill the process and then at any command prompt just type “rdpclip”. When it starts up, RDPCLIP should reinsert itself into the chain. If local to remote session copy and paste is broken, you should close the TS client and then reconnect to the session, since the client inserts itself into the viewer chain when it starts up.

 

What about loops in the viewer chain? If you notice either the TS client or RDPCLIP consistently using a lot of CPU cycles, then it could possibly be due to a loop in the chain. First try to kill and restart RDPCLIP. It may be part of a circular viewer chain and as a result constantly sending the client “clipboard updated” packets, causing itself and the client to work overtime. If this does not solve the problem, try to close the client and reconnect to the session.

 

Windows Vista and Longhorn Server to the rescue

 

In Vista and Longhorn Server (LHS) our friends in USER32 added some new system APIs which implement a system-controlled viewer chain. No longer do applications have to contend with managing the chain! The system now maintains a list of applications which want to be notified of updates to the clipboard, and when the clipboard is updated, the system goes and tells each one that the clipboard contents have changed.

 


Since the new clipboard APIs are only available on Vista and above, you have to be running the TS client on Vista and connecting to a Vista (or Windows Server Codenamed Longhorn) machine to get the full benefits of the new behavior. If you are connecting to a Vista machine from an XP box, then the local clipboard viewer chain is still subject to breakage, while the remote clipboard viewer chain (of which RDPCLIP is a part) will be more reliable and remain intact. Hence your remote-to-local copy and paste operations should always work, while the local-to-remote could still break (due to the local clipboard chain being application-controlled).

 

Summary

 

If you have a shared clipboard problem, see if the following troubleshooting guide helps:

 

Symptom

Possible Cause

Possible Solution

Remote-to-local copy and paste broken.

RDPCLIP is not in the clipboard viewer chain.

Kill and restart RDPCLIP.

Local-to-remote copy and paste broken.

TS client is not in the clipboard viewer chain.

Close the TS client and reconnect to the session.

RDPCLIP or the TS client is using excessive CPU.

There is a loop in the local or remote clipboard viewer chain.

Kill and restart RDPCLIP. If this does not fix the problem, close the TS client and reconnect to the session.

 

Remember, that on Windows Vista and above, the clipboard viewer chain system component is radically improved. Another reason to upgrade to the best Windows version ever!

 

Published Thursday, November 16, 2006 11:48 PM by termserv

Comment Notification

If you would like to receive an email when updates are made to this post, please register here

Subscribe to this post's comments using RSS

Comments

# Jason Conger Blog » Blog Archive » Microsoft Terminal Services Clipboard Troubleshooting.

# re: Why does my shared clipboard not work? (Part 1)

Thanks for explaining this.  I run several rdp sessions at a time and I lose the use of my clipboard often.  Before I tracked it down to mstsc as the problem, I had several hard resets on my machine as I tried not to kick in the monitor.

I did find a small utility that would show me what mstsc session was the problem child.  That made things much better.

Friday, November 17, 2006 1:36 AM by Kevin Marquette

# re: Why does my shared clipboard not work? (Part 1)

Thanks for the feedback. I hope our Vista improvements make your frustrations disappear! What was the name of this small utility you found?

Friday, November 17, 2006 3:35 PM by elton_saul

# re: Why does my shared clipboard not work? (Part 1)

I restarted my TS session, it didn't fix the problem.  I can't copy from a Vista RDP session to a Windows Server 2003 local session.  I can copy from the local session TO Vista, but not copy from remote to local.  I can copy to and from a remote 2003 session on the same machine.  I tried everything you suggested, but nothing has worked, even though Clipboard is selected on my RDP when I connect.  :(

Monday, January 08, 2007 6:13 PM by Jon Burchel

# re: Why does my shared clipboard not work? (Part 1)

Jon, the issue you describe *sounds* like a bug I have been trying to track down, but which we have not been able to repro internally. Can you please use the e-mail link (top-right of the blog) to get in contact with us? I will need to get some data from you and it will be easier to do so using mail.

Monday, January 08, 2007 6:46 PM by Elton Saul

# re: Why does my shared clipboard not work? (Part 1)

Thanks!  Wow, responded in less than an hour!  :)

Monday, January 08, 2007 6:51 PM by Jon Burchel

# Why does my shared clipboard not work?

The Terminal Services Team Blog has a great article on why application based clipboard activity can give you headaches in terminal server. Check out their article, Why does my shared clipboard not work? (Part 1). Why does my shared clipboard

Wednesday, February 21, 2007 3:00 PM by Sektormedia: Aaron's Brain

# re: Why does my shared clipboard not work? (Part 1)

I typically have 2-7 RDP sessions open at once for the several servers I administer.

When copy and pasting between my local PC and the Session, or from session to session. The copy does not always get into the Local PC clipboard, and/or transferred to the RDP session Clipboard.  

Okay that part I can see the above being the issue. Now how about this twist?

If I use the keyboard it takes maybe 12-100 times of hitting CTRL-C I >might< get  something in the clipboard. If I right click and select copy 3-4 times I can usually get it.

My Local PC is running Vista Enterprise Ed (x86), the RDP Sessions are

mostly Win2003 R2, though Some Win2003 SP2, Win2000

The Apps I'm copy and pasting from are, IE, Notepad, Command Prompt, MMC

Its really annoying to have to copy multiple times to get somthing on the

Clipboard.

Tuesday, April 17, 2007 8:15 PM by Scooter133

# re: Why does my shared clipboard not work? (Part 1)

I have the same exact issue as Scooter133. I manage about 150-300 servers ranging from Win2k to 2k3 sp2 and only on my Vista system does the clipboard not work. May have to open a premier case if I can't find a fix, I have to be able to use the clipboard.

Friday, April 20, 2007 8:31 AM by kg

# re: Why does my shared clipboard not work? (Part 1)

Follow up, I seem to have the most problems from Outlook 2007 to the TS Sessions.

Friday, April 20, 2007 8:37 AM by kg

# re: Why does my shared clipboard not work? (Part 1)

Unbelievable what you're writing.

Upgrade to Vista? no comment...

Will MS gracefully provide fix for other non/Vista systems?

Thanks in advance

elixnk MS gold Partner

Friday, June 01, 2007 12:59 AM by Ondra Spilka

# re: Why does my shared clipboard not work? (Part 1)

I have a XP (local) system connecting to W2k system (host) and my cut/paste would just stop working. On my host machine, I killed and restart the rdpclip process but what happens after that is  I'm only able to only perform one cut/paster operation. After that, the cut/paste operation seems to be broke again. Any ideas?

joe...

jbozen@stfrancis.edu

Thursday, June 14, 2007 4:42 PM by Joe

# re: Why does my shared clipboard not work? (Part 1)

I too am amazed that you've written such a detailed explanation of the bug, yet offered abslutely no pushbutton solution. At lease write a simple utility that just restarts rdpclip.exe every 20 seconds or something. gosh.

Friday, June 22, 2007 11:12 AM by Your Mom

# re: Why does my shared clipboard not work? (Part 1)

My experience with my XP client to a Server 2003 box is that I can always paste from the server back to the terminal client in XP. However, I can't usually paste in the other direction.

If I log out of the session and start it fresh, it usually works for a short while but then pasting stops working.

There should be a bug fix for this erratic behaviour, surely?

www.capitaloffice.com.au

Thursday, June 28, 2007 9:32 PM by Will Nitschke

# re: Why does my shared clipboard not work? (Part 1)

Its worked for me!.  Thank you very much to know about TS sessions.

Monday, July 09, 2007 8:12 AM by Ashk

# re: Why does my shared clipboard not work? (Part 1)

Using XP to connect to a Windows 2003 Server I never had a problem with the clipboard. Using 2 new PCs with Vista I never have been able to transfer a file via copy/paste. Killing and restarting rdpclip had no effect. Still broken for me...

Sunday, July 15, 2007 6:13 AM by Christian Waidner

# re: Why does my shared clipboard not work? (Part 1)

What is the root cause of this problem?

I have XP Connecting to XP and all sorts of clipboard problems, including errors in Excel, but, in all cases, Restarting RDPClip.exe works find for me.  In some cases I just re-initiate the connection, (the old connection drops) and often works find.

I have to do it many times a day.  Why only between certain machines while others have no problems?

Friday, July 20, 2007 5:52 PM by Dwight Wilbanks

# re: Why does my shared clipboard not work? (Part 1)

FYI: For all you out there that use RDP on a regular basis and have this issue often I’d suggest using the 'Remote Desktops' MMC provided with the Domain Admin Tools as I haven’t had the Clipboard issue when using it where as I do when I use the RDP client.

Note: This is only personnel experience and I hope you have the same results.

Monday, September 03, 2007 8:27 AM by Robert

# re: Why does my shared clipboard not work? (Part 1)

Thank you Robert for taking the time to post.

I was able to find a download for it here http://www.microsoft.com/downloads/details.aspx?FamilyID=c16ae515-c8f4-47ef-a1e4-a8dcbacff8e3&displaylang=en

I extracted the MSI then launched it.

After that I went into MMC and added the remote desktop snap-in.

Is there a way to get the MMC to work more like the RDP client?  I'm not administering a server, I'm using a remote workstation.  

I want Full Screen!  I don't want to re-learn how to use windows again (windows-D will get you to a desktop in RDP, but not in MMC)

Monday, September 03, 2007 5:54 PM by Dwight Wilbanks

# re: Why does my shared clipboard not work? (Part 1)

I am in tears, I have a handful of servers that cut and paste correctly to my XP laptop, but my most heavily used server, 2K3 does not cut and paste to any of the remote clients.

It can cut and paste to itself and same with my laptop, but not between this server and my laptop.

Monday, September 24, 2007 1:51 PM by Whit in SF

# re: Why does my shared clipboard not work? (Part 1)

My clipboard is not shared on only one server - Win2K3....all my other servers, this is no issue, but I have to copy ckt ID's and I can't here, very time consuming and confusing.

Thx

Monday, September 24, 2007 2:55 PM by Whit in SF

# re: Why does my shared clipboard not work? (Part 1)

I didn't have this issue until I upgraded to Windows Vista 64-bit edition.

I manage dozens of servers, so I use Remote Desktop VERY HEAVILY, and need to copy information back and forth a LOT to do my work.  I cannot disconnect and reconnect every time this happens.

Is there a more permanent fix for this?  Perhaps a patch?

Friday, September 28, 2007 9:57 AM by whall@dsg-us.com

# rdpclip utility

I had this problem as well so I created a quick (.NET 2.0) utility to restart a process and installed on the servers I RD to.

Now it's one click vs. manually killing and restarting rdpclip to resolve immediate copy-paste issues w/ RD.

You're welcome to use it. You need v2.0 of the .NET framework to run it:

http://www.hansifer.com/restartProcess.zip

1)  save zip locally

2)  unblock zip (in properties of the zip file)

3)  extract exe to wherever

4)  create a shortcut for the exe

5)  edit the Target of the exe shortcut to read "C:\<wherever>\RestartProcess.exe" "rdpclip"

6)  put the shortcut somewhere accessible (QuickLaunch bar is a good place)

STANDARD DISCLAIMER: No guarantees. Use this utility at your own risk.

Saturday, September 29, 2007 4:22 PM by Hans

# RDP Clipboard Fix Tool

I put up a small tool on my site that fixes the issue. You can find it here: http://remkoweijnen.nl/blog/2007/10/25/rdp-clipboard-fix/

Thursday, October 25, 2007 2:17 PM by Remko Weijnen

# auto insurance rate

I haven't been up to much recently. Whatever. I've pretty much been doing nothing worth mentioning. What can I say?

Grumbhr.

Thursday, January 03, 2008 8:49 PM by insurance auto

# re: Why does my shared clipboard not work? (Part 1)

I am running Windows Vista and using RDP to connect to Windows XP. I have not been running with Vista for long, but in the last couple of days I've found that local to remote pasting is failing.

For a while, restarting RDP client fixed the problem but after the first paste I did it would break again. Now even restarting RDP client does not help. None of the above steps fixes this issue.

I have a feeling a restart of Vista will bring me back, but it's a shame as this has been my first negative experience of Vista (only been running with it for a few weeks).

Wednesday, January 09, 2008 9:16 PM by David

# re: Why does my shared clipboard not work? (Part 1)

David, have you tried the Vista SP1 release candidate? We fixed some shared clipboard bugs in both the client and server for that release.

Tuesday, January 22, 2008 3:40 PM by Elton Saul

# re: Why does my shared clipboard not work? (Part 1)

Remko Weijnen tool works.  Link above.

Thursday, February 07, 2008 5:24 AM by David Swales

# re: Why does my shared clipboard not work? (Part 1)

Is there a fix or a part 2?

Wednesday, February 13, 2008 5:52 PM by Needing Copying

# re: Why does my shared clipboard not work? (Part 1)

Saturday, February 16, 2008 10:32 AM by termserv

# How can I troubleshoot to find the "Bad App" causing clipboard problems?

The has been a lot of talk about badly written apps breaking the Clipboard chain.  We have this happen quite often and I would like to track down which of our apps is causing the problem.  Can you suggest any utilities or methods for troubleshooting and finding the "bad app"?  Maybe a utility for viewing the Clipboard chain so that when it happens I can see what apps are missing from it and which are still there?  If I can find out which app is causing it, I can make a bug report to the app vendor and possibly get a fix.  Other than that, I would have to hope that Microsoft will eventuall come up a with a fix (For XP and 2003).  It sounds like Vista is having quite a few issues with this also... We will be on 2003 Terminal server for at least another year. We run about 30 Terminal servers and this is a consistant complaint from our Users.  It happens randomly and we have yet to find the cause... Seems to be noticed mostly when running office 2003 on terminal server.

Monday, February 25, 2008 7:04 PM by AaronM

# re: Why does my shared clipboard not work? (Part 1)

Our silly little vista problem with the clipboard is this --- anytime you try and hit the "print screen" button and then go attempt to paste that image into "paint" it says you are not allowed access to the clipboard.  End of story.

Every user on earth has been allowed to use this funtion for years and years now, yet somehow we're supposed to think this is not a planned reduction of personal liberty on microsofts doing? Just a mere oversight?  I think NOT...

Friday, February 29, 2008 2:38 PM by jay @ dealshop

# re: Why does my shared clipboard not work? (Part 1)

Of all the stupid ways to design clipboard access, Microsoft has come up with a management nightmare again.  All that is needed is temporary storage accessable to any application that needs its content.  If there is a more convoluted, error-prone solution, Microsoft will unfailingly implement it.  No wonder they eliminated the clipboard viewer in Vista and sent us back to the dark ages of pasting to wordpad to confirm the contents of the clipboard!  SHEEEEEEESH!!!

Thank goodness for third party clipboard utilities.

Monday, March 24, 2008 4:20 PM by Ken

# re: Why does my shared clipboard not work? (Part 1)

While I do appreciate a candid description of what's happening behind the scenes, as an end user I find this infuriating.

I find it completely inexcusable that a dept blog from Microsoft would publish a 'bug' without a fix, and blame it on poorly written software and insinuate that if you upgrade $$ to Vista your problems will lessen. ???

I searched the dominate search engine uncle "Goog" for the answer to my problems and sadly I find that the comments of this post offer more of a solution than the original poster does.

It's a fairly gloomy day for MSFT when the only  fix is to restart a buggy process (rdclip.exe) Reminds me of the '3 finger solute' days of win95.

Sunday, April 20, 2008 4:54 AM by Nick Skitch

# re: Why does my shared clipboard not work? (Part 1)

Very usefull and detailed information !

It helps me to resolve all issues with the windows 2k3 clipboard

Friday, May 09, 2008 1:15 PM by ELNico (ARG)

# re: Why does my shared clipboard not work? (Part 1)

Thanks. That was an interesting read. But i would have liked to know why was it not designed so that the OS controls notifying all the processes about any update on the clipboard instead of the processes doing it themselves. I mean was there any limitation due to which the original design was done this way??

Tuesday, June 10, 2008 12:29 AM by Reena Agrawal

# re: Why does my shared clipboard not work? (Part 1)

Why has no one here suggested Terminals? Its a godsend, however it suffers from the same issue as the offical Microsoft RDP client... Check it out google for it their site is at codeplex

Friday, July 11, 2008 3:12 PM by Ben

# re: Why does my shared clipboard not work? (Part 1)

Who really cares how it works?  It should just friggin work!  Makes me want to get a Mac.

Application A talks to APplication B and my blog copies blah blah blah... This is yet another nuance to add to the infinite list.

Monday, September 08, 2008 10:06 PM by Kosher

# re: Why does my shared clipboard not work? (Part 1)

BTW, I am using Vista and 2008 for the remote server and it still doesn't work!

Monday, September 08, 2008 10:08 PM by Kosher

# re: Why does my shared clipboard not work? (Part 1)

My problem is that rdpclip.exe just isn't starting on the terminal server session..... But I can't find any info on how to resolve this one anywhere :(

Wednesday, September 24, 2008 6:05 AM by Tim

# re: Why does my shared clipboard not work? (Part 1)

I've had this problem connecting from Windows XP SP2 to both Windows Server 2003 and Windows Server 2008.  The workaround I'd found was to toggle the TS config setting for allowing clipboard access, but that also requires logging off/on to start a new RDP session - a big pain.  The problem is usually copying from an app in my RDP session back to an app on my local workstation.  From this post, I would have thought that copy RDP > paste local would be better (due to the improvements in rdpclip), but it still seems to have issues because killing and restarting rdpclip just fixed the problem for me.  The server is Windows 2008 Server, Standard w/o Hyper-V,  SP1, 64-bit.

Tuesday, January 06, 2009 2:25 PM by John

# re: Why does my shared clipboard not work? (Part 1)

Gotta love a linked list that the API requires the clients to maintain!  Well, glad it's been redesigned in the new USER32..

As for the old version with this problem, there is a software workaround for developers... a) record the clipboard sequence number in your WM_DRAWCLIPBOARD handler, b) create a timer in which you call GetClipboardSequenceNumber() and compare to the last number you received in WM_DRAWCLIPBOARD.  If those numbers differ, you know you've been dropped from the notification chain (or perhaps some dipshit app has been inserted in front of you and isn't passing along messages), and should re-add yourself.  In this way, you can avoid user intervention such as having them restart the application.

Sunday, February 15, 2009 10:59 AM by Fooby

# re: Why does my shared clipboard not work? (Part 1)

@Fooby

Have you considered telling Microsoft?  Office is the one that is almost always running when I have problems.

Sunday, February 15, 2009 5:42 PM by Dwight Wilbanks

# re: Why does my shared clipboard not work? (Part 1)

This goes a LONG way to explaining the weirdness I have been seeing on my RDP sessions, great article which makes it easy to understand the problem.

Wednesday, February 18, 2009 7:37 PM by Grant

# re: Why does my shared clipboard not work? (Part 1)

Copy and paste wasn't working from my remote XP system to my local Windows 7 system. All I had to do to fix this problem was run RDPCLIP from the remote system. Thanks for the advice!

Friday, May 15, 2009 10:05 AM by Aaron Barker

# re: Why does my shared clipboard not work? (Part 1)

Great Article. Thanks a lot.

I have been working on Clipboard monitoring application and I am facing problem of clipboard chain broken. Sometimes it happens that some application registered into the clipboard chain and terminated without unregistered which leaves all other applications in clipboard chain without having clipboard change events.  

Could you please help on my below questions. It would be really helpful for me.

       1. How many clipboard chain will be there and how it differs from application X to application Y?

       2. Sometime it happens that some application X getting clipboard event changes but not other application Y. How this could be possible?

       3. If some how clipboard chain broken then is there any way to take all application into that chain back to working clipboard chain?

Please let me know if you need any other details.

Thanks,

Megha

Wednesday, July 01, 2009 1:08 PM by Megha

# re: Why does my shared clipboard not work? (Part 1)

People keep referring to killing RDPCLIP as a "fix". It is not a fix - it is a work-around. When no one needs to even think about this (or blog about it) because it "just works", then the issue is "fixed"

As stated by others above, I don't care how it works. Copy/Paste has been a part of Windows since when, day 1? Now it doesn't work properly. Fix it. End of story.

Microsoft - I'm not sure how else to put it, but I'd rather see all of the known issues fixed in your currently released products before you release any NEW products.

Thanks,

- Joe

Thursday, July 16, 2009 10:47 AM by Joe

# re: Why does my shared clipboard not work? (Part 1)

C:\> taskkill /fi "username eq %USERNAME%" /im rdpclip.exe & rdpclip

Thursday, August 20, 2009 2:00 PM by Restarts rdpclip.exe on server side

# re: Why does my shared clipboard not work? (Part 1)

Only Microsoft could make such a huge mess of such a simple concept.

I have enough trouble with buggy clipboard behaviour even when not using RDP.

Get a grip on reality Microsoft.

Features for features sake is an infantile approach. It has to WORK RELIABLY.

Thursday, September 10, 2009 8:37 PM by Peter

# re: Why does my shared clipboard not work? (Part 1)

>> "Another reason to upgrade to the best Windows version ever!" (Vista)

Cough, cough, Splutter!...

I hope the authors latest batch of Prozac is better than his 2006 batch...

Thursday, September 10, 2009 8:41 PM by Peter

# re: Why does my shared clipboard not work? (Part 1)

Seriously, I have to deal with this bug 5 or 6 times per day. Why is the fix (not the work-around) taking so long?

- Joe

Thursday, October 01, 2009 11:39 AM by Joe

# re: Why does my shared clipboard not work? (Part 1)

As far as I am aware Microsoft are not releasing an update for this.  People will just have to live with it or upgrade.

It is quite funny that Microsoft blames badly written software, considering that the only 4 applications that I am running every time the problem occurs are Internet Explorer, Excel, Outlook and SQL Server Management Console.

Anyone else seeing a trend here?

Having said that, Excel is often the cause of this problem.

Tuesday, October 06, 2009 3:39 AM by Iain

# re: Why does my shared clipboard not work? (Part 1)

I hear what you're saying, but using non-Microsoft software is no excuse for a Microsoft piece of software not to work correctly. We all know that the bad-vendor-driver excuse for some BSODs didn't fly, and for the most part, that issue has been fixed.

Too often we're told that we need to uninstall/reinstall (be it drivers, applications or Windows itself), reboot, or upgrade to fix a problem. I think what we're all forgetting is that enough people don't accept the above as solutions - by voicing their displeasure to Microsoft - Microsoft will be forced to fix the issue.

Microsoft - any updates? This problem is still occurring.

- Joe

Monday, October 26, 2009 9:49 AM by Joe

Leave a Comment

(required) 
required 
(required) 

  
Enter Code Here: Required
 
Page view tracker