Repair Clipboard Chain 2.0.1
CARE: Crash Analysis Report Environment
DATA (Dump Analysis + Trace Analysis) Facebook group
Please join the community of memory (dump) and trace analysis engineers. This group promotes scientific methods and memory dump-based worldview.
Twitter @ DumpAnalysis You can now follow portal and blog news at DumpAnalysis on Twitter
LinkedIn Group Dr. Watson Enthusiasts All about Dr. Watson errors and more. Get news, excerpts and progress reports about the forthcoming book The Science of Dr. Watson: An Illustrated History of Debugging (ISBN 978-1906717070)
2010 (0x7DA) - The Year of Dump Analysis 2011 (0x7DB) - 2020 (0x7E4) The Debugging Decade
The new version has been published and available for download from Citrix support:
http://support.citrix.com/article/CTX106226
http://support.citrix.com/article/CTX109234 (64-bit version)
It allows to repair clipboard chain for individual ICA sessions:
C:\>RepairCBDChain.exe "Sent Items - Microsoft Outlook - \\Remote"
C:\>RepairCBDChain.exe "Weekly report - Message - \\Remote"
You might also repair individual RDP sessions if you specify the window class as the second parameter although I didn’t test this.
MessageHistory tool shows the following RDP client window on my x64 Windows 2003 Server responsible for receiving clipboard change notifications:
HWND: 0x00000000000318A8
Class: "RdpClipRdrWindowClass"
Title: ""
20:31:59:562 S WM_DRAWCLIPBOARD (0x308) wParam: 0x31986 lParam: 0x0
The command line should be:
C:\>RepairCBDChain.exe "" "RdpClipRdrWindowClass"
Inside RDP session on Windows XP the following rdpclip.exe window receives clipboard change notifications:
HWND: 0x0004003A
Class: "CBMonitorClass"
Title: "CB Monitor Window"
19:36:57:484 S WM_DRAWCLIPBOARD (0x308) wParam: 0x50142 lParam: 0x0
and the command line should be:
C:\>RepairCBDChain.exe "CB Monitor Window" "CBMonitorClass"
Please see Clipboard Issues Explained for a background explanation.
- Dmitry Vostokov @ DumpAnalysis.org -
_1125.png)
Coming Soon:
Debugging Notebook: Essential Concepts, WinDbg Commands and Tools
Crash Dump Analysis for System Administrators and Support Engineers
New Magazines:
Debugged! MZ/PE: MagaZine for/from Practicing Engineers
New Books:
Memory Dump Analysis Anthology, Volume 3
First Fault Software Problem Solving: A Guide for Engineers, Managers and Users
x64 Windows Debugging: Practical Foundations
Also available:
Windows Debugging: Practical Foundations
DLL List Landscape: The Art from Computer Memory Space
Dumps, Bugs and Debugging Forensics: The Adventures of Dr. Debugalov
WinDbg: A Reference Poster and Learning Cards
Memory Dump Analysis Anthology, Volume 2
Memory Dump Analysis Anthology, Volume 1
New Children's Book:
July 4th, 2007 at 12:49 am
This is interesting that in Vista we have the new clipboard chain API:
AddClipboardFormatListener
RemoveClipboardFormatListener
GetUpdatedClipboardFormats
and a new message:
WM_CLIPBOARDUPDATE
December 8th, 2008 at 6:50 am
does it work in Vista ?
one of our user suffer the problem , but after she ran the RepairCBDChain.exe , it works only once , the second time she tried to copy and paste it doesn’t work any more , her operation system is Vista
February 23rd, 2009 at 8:02 pm
Repair Clipboard Chain 2.0.1:
Is it possible to get the source code for this program? I would like to learn how it works…