Show contents of the Windows clipboard

后端 未结 5 1818
野的像风
野的像风 2021-02-18 22:38

How can I see what the Windows clipboard currently contains without using the paste operation?

I don\'t want the \"pasted-to\" application to perform any actions on the

相关标签:
5条回答
  • 2021-02-18 23:15

    How about the regular old Clipbrd.exe clipboard viewer from Windows XP?

    That'll still run on Windows Vista and Windows 7, IIRC.

    0 讨论(0)
  • 2021-02-18 23:20
    1. Select run from the start menu.
    2. Enter "clipbrd.exe" in it.

    Then you can see the clipboard items in the Windows systems.

    0 讨论(0)
  • 2021-02-18 23:21

    If using .NET you can query the Clipboard object.

    0 讨论(0)
  • 2021-02-18 23:25

    There is a list of clipboard manager tools at Wikipedia: Clipboard manager

    ClipX allows you to view a log of previous clipboard entries by pressing Ctrl + Shift + V.

    0 讨论(0)
  • 2021-02-18 23:27

    NirSoft offers a free “Inside Clipboard” utility which allows you to see the raw clipboard contents and different formats. It’s close to what you would see with a programmatic API but with a nice GUI. Its GUI includes hex view. It also allows data to be exported and allows saving a snapshot to a .clp file which it can open and allow you to examine later.

    If you need to see things at the level of the programmatic API to quick check things without writing a program yourself, I recommend this tool.

    0 讨论(0)
提交回复
热议问题