Follow me

Saturday 12 July 2014

Create a Shortcut or Hotkey to Clear the Clipboard in Windows

Have you ever copied something to the clipboard that you don’t want to leave there in case somebody else is going to use your computer? Sure, you can copy something else to the clipboard real quick, but can’t you just make a shortcut or hotkey to clear it?
And of course you can, with the built-in clip.exe utility in Windows 7 or Vista. It’s not really meant for clearing the clipboard, but with a little command line magic in a shortcut, we can make it do just that.
Note: This is also useful if you copied a very large amount of data to the clipboard and you don’t want it wasting memory anymore.
Create a Shortcut Icon to Clear the Clipboard
Right-click on the desktop or elsewhere, and choose New \ Shortcut from the menu.
image 
Then in the shortcut location box, enter the following command:
cmd /c “echo off | clip”
image
At this point you’ll have an icon that will immediately clear the clipboard… but we can tweak it a bit further.
image
Right-click on the icon and choose Properties, and then change the Run drop-down to “Minimized” to make sure you don’t see the command prompt. You can also assign a shortcut key here.
image
If you click the Change Icon button and then browse down to this file, you can find a clipboard icon:
%SystemRoot%\system32\shell32.dll
image
Now we’ve got a nice-looking icon that will clear out the clipboard:
 image

No comments:

Post a Comment