Possible Duplicate:
How to add an item to my “Send To” context menu

Right clicking on a file gives a "send to" option.

How may I send a file to any other location other than the standard ones:

  • Mail Recipient
  • My Documents
  • Shortcut to desktop
  • Compressed File
link|improve this question
1  
You can add a shortcut to application / folder to c:\documents and settings\username\sendto (which is a hidden folder. – MByD Apr 5 '11 at 14:05
feedback

migrated from stackoverflow.com Apr 5 '11 at 14:26

This question came from our site for professional and enthusiast programmers.

closed as exact duplicate by Sathya Apr 5 '11 at 15:08

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

How to customize the Send To menu.

To get to the SendTo folder, you’ll need to open up an Explorer window, and then paste in the following to the address bar.

%APPDATA%\Microsoft\Windows\SendTo

You should now see a bunch of shortcuts: .

enter image description here

Let’s say you wanted to add an item to the Send To menu to open files in Notepad. You could just drag a shortcut to Notepad into this folder, or create a new shortcut. Now you can see the new Notepad item in the menu:

Source of Information

link|improve this answer
1  
An alternative way to get there is to type shell:sendto in the Start Menu search box. – paradroid Apr 6 '11 at 12:56
@paradroid, it works as a run command also. Thanks for the tip. – Moab Apr 6 '11 at 14:48
feedback