Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / operating-systems / Windows

Open Files Via Send To Context Menu

4.11/5 (2 votes)
23 Oct 2015CPOL 10.6K  
Save time by opening files via Windows Explorer's send to context menu

Introduction

Programmers's time is precious, right? This is a kind of hack I use when I want to quickly open some kind of file that's doesn't have a default program to be opened or this program is not accessible via a context menu entry.

Example of Use

Let's say you want to calculate the hash of some file you've recently downloaded or transferred from an external drive. It would be convenient to do it with just a couple clicks, right?

In this picture, I show how easy it is to open a file in the Hashing Application:

Image 1

Creating a 'send to' Entry

While in Windows Explorer, type "sendto" in the address bar. If Windows does not recognize it, then go the full path, which should be:

C:\Users\[username]\AppData\Roaming\Microsoft\Windows\SendTo

where [username] is the user currently logged in at Windows.

Image 2

Now, you should see a list of shortcuts that represent actions in the "send to" context menu. You just have to create a new action, as you desire.

Click on the blank space in the screen and point at New->Shortcut, then browse and choose the app you want.

VoilĂ ! Now you have your way to start the app at your fingertips!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)