How to add an item to my “Send To” context menu
On my old XP machine I would simply copy shortcuts into the %userprofile%SendTo
folder. On Windows-7 this folder is hidden, and I don't have access to it (which surprised me, it is my SendTo folder after all).
Is there an "approved" way of adding to my Send To menu that I'm unaware of?
Or do I need extra permissions from our system administrators?
windows-7 windows windows-explorer
add a comment |
On my old XP machine I would simply copy shortcuts into the %userprofile%SendTo
folder. On Windows-7 this folder is hidden, and I don't have access to it (which surprised me, it is my SendTo folder after all).
Is there an "approved" way of adding to my Send To menu that I'm unaware of?
Or do I need extra permissions from our system administrators?
windows-7 windows windows-explorer
add a comment |
On my old XP machine I would simply copy shortcuts into the %userprofile%SendTo
folder. On Windows-7 this folder is hidden, and I don't have access to it (which surprised me, it is my SendTo folder after all).
Is there an "approved" way of adding to my Send To menu that I'm unaware of?
Or do I need extra permissions from our system administrators?
windows-7 windows windows-explorer
On my old XP machine I would simply copy shortcuts into the %userprofile%SendTo
folder. On Windows-7 this folder is hidden, and I don't have access to it (which surprised me, it is my SendTo folder after all).
Is there an "approved" way of adding to my Send To menu that I'm unaware of?
Or do I need extra permissions from our system administrators?
windows-7 windows windows-explorer
windows-7 windows windows-explorer
edited Jul 11 '13 at 15:23
garyjohn
27k46572
27k46572
asked May 11 '10 at 14:49
Binary WorrierBinary Worrier
4511819
4511819
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
An alternative, easier to remember, quicker and fail safe way to get the the Send To folder is to type shell:sendto
in the Start Menu search box. The location contains ordinary application shortcuts.
UPDATE:
For Windows 10 (and probably 8) this doesn't work with the Start Menu, so you have to use Win+R and use the Run box instead.
+1 Excellent! Have you a reference to othershell:
commands? Can they be used in places other than the Run dialog e.g. Can they be used in batch commands, Powershell scripts etc? Thanks
– Binary Worrier
Apr 6 '11 at 13:14
@Binary: Sure. As you can see, there are loads of them, but they cannot be used in scripts, as far as I know : winhelponline.com/blog/…
– paradroid
Apr 6 '11 at 13:17
add a comment |
Apologies,
A little extra googling found it on How to Geek
The folder is now at %APPDATA%MicrosoftWindowsSendTo
Thanks,
BW
Actually, the folder is represented byFOLDERID_SendTo
. You should never rely in hard-coding default paths.
– Joey
May 11 '10 at 17:59
@Johannes Rössel: I did a quick google for that but I don't understand it's context' Should I be able to rundir %FOLDERID_SendTo%
from a command prompt? Thanks.
– Binary Worrier
May 14 '10 at 13:32
1
From a batch file you have no choice. When fiddling with this yourself on your machine do whatever works. However, if you put things there with a program you should use the proper APIs to get the folder since%APPDATA%MicrosoftWindowsSendTo
is merely the default path. There is no guarantee that the actual folder really resides there.
– Joey
May 14 '10 at 15:43
Since it is a shell folder, the chances approach 100% that it is located at the default location. However, it may be hard-linked from another location as well. Ordinarily, simply typing the path to a folder in the Run box will open it, but you will get an error without the "shell:" command if target is a symbolic link of some kind.
– Abraxas
Jul 21 '11 at 9:22
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f139968%2fhow-to-add-an-item-to-my-send-to-context-menu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
An alternative, easier to remember, quicker and fail safe way to get the the Send To folder is to type shell:sendto
in the Start Menu search box. The location contains ordinary application shortcuts.
UPDATE:
For Windows 10 (and probably 8) this doesn't work with the Start Menu, so you have to use Win+R and use the Run box instead.
+1 Excellent! Have you a reference to othershell:
commands? Can they be used in places other than the Run dialog e.g. Can they be used in batch commands, Powershell scripts etc? Thanks
– Binary Worrier
Apr 6 '11 at 13:14
@Binary: Sure. As you can see, there are loads of them, but they cannot be used in scripts, as far as I know : winhelponline.com/blog/…
– paradroid
Apr 6 '11 at 13:17
add a comment |
An alternative, easier to remember, quicker and fail safe way to get the the Send To folder is to type shell:sendto
in the Start Menu search box. The location contains ordinary application shortcuts.
UPDATE:
For Windows 10 (and probably 8) this doesn't work with the Start Menu, so you have to use Win+R and use the Run box instead.
+1 Excellent! Have you a reference to othershell:
commands? Can they be used in places other than the Run dialog e.g. Can they be used in batch commands, Powershell scripts etc? Thanks
– Binary Worrier
Apr 6 '11 at 13:14
@Binary: Sure. As you can see, there are loads of them, but they cannot be used in scripts, as far as I know : winhelponline.com/blog/…
– paradroid
Apr 6 '11 at 13:17
add a comment |
An alternative, easier to remember, quicker and fail safe way to get the the Send To folder is to type shell:sendto
in the Start Menu search box. The location contains ordinary application shortcuts.
UPDATE:
For Windows 10 (and probably 8) this doesn't work with the Start Menu, so you have to use Win+R and use the Run box instead.
An alternative, easier to remember, quicker and fail safe way to get the the Send To folder is to type shell:sendto
in the Start Menu search box. The location contains ordinary application shortcuts.
UPDATE:
For Windows 10 (and probably 8) this doesn't work with the Start Menu, so you have to use Win+R and use the Run box instead.
edited Dec 17 '18 at 7:12
answered Apr 6 '11 at 12:59
paradroidparadroid
19.2k95899
19.2k95899
+1 Excellent! Have you a reference to othershell:
commands? Can they be used in places other than the Run dialog e.g. Can they be used in batch commands, Powershell scripts etc? Thanks
– Binary Worrier
Apr 6 '11 at 13:14
@Binary: Sure. As you can see, there are loads of them, but they cannot be used in scripts, as far as I know : winhelponline.com/blog/…
– paradroid
Apr 6 '11 at 13:17
add a comment |
+1 Excellent! Have you a reference to othershell:
commands? Can they be used in places other than the Run dialog e.g. Can they be used in batch commands, Powershell scripts etc? Thanks
– Binary Worrier
Apr 6 '11 at 13:14
@Binary: Sure. As you can see, there are loads of them, but they cannot be used in scripts, as far as I know : winhelponline.com/blog/…
– paradroid
Apr 6 '11 at 13:17
+1 Excellent! Have you a reference to other
shell:
commands? Can they be used in places other than the Run dialog e.g. Can they be used in batch commands, Powershell scripts etc? Thanks– Binary Worrier
Apr 6 '11 at 13:14
+1 Excellent! Have you a reference to other
shell:
commands? Can they be used in places other than the Run dialog e.g. Can they be used in batch commands, Powershell scripts etc? Thanks– Binary Worrier
Apr 6 '11 at 13:14
@Binary: Sure. As you can see, there are loads of them, but they cannot be used in scripts, as far as I know : winhelponline.com/blog/…
– paradroid
Apr 6 '11 at 13:17
@Binary: Sure. As you can see, there are loads of them, but they cannot be used in scripts, as far as I know : winhelponline.com/blog/…
– paradroid
Apr 6 '11 at 13:17
add a comment |
Apologies,
A little extra googling found it on How to Geek
The folder is now at %APPDATA%MicrosoftWindowsSendTo
Thanks,
BW
Actually, the folder is represented byFOLDERID_SendTo
. You should never rely in hard-coding default paths.
– Joey
May 11 '10 at 17:59
@Johannes Rössel: I did a quick google for that but I don't understand it's context' Should I be able to rundir %FOLDERID_SendTo%
from a command prompt? Thanks.
– Binary Worrier
May 14 '10 at 13:32
1
From a batch file you have no choice. When fiddling with this yourself on your machine do whatever works. However, if you put things there with a program you should use the proper APIs to get the folder since%APPDATA%MicrosoftWindowsSendTo
is merely the default path. There is no guarantee that the actual folder really resides there.
– Joey
May 14 '10 at 15:43
Since it is a shell folder, the chances approach 100% that it is located at the default location. However, it may be hard-linked from another location as well. Ordinarily, simply typing the path to a folder in the Run box will open it, but you will get an error without the "shell:" command if target is a symbolic link of some kind.
– Abraxas
Jul 21 '11 at 9:22
add a comment |
Apologies,
A little extra googling found it on How to Geek
The folder is now at %APPDATA%MicrosoftWindowsSendTo
Thanks,
BW
Actually, the folder is represented byFOLDERID_SendTo
. You should never rely in hard-coding default paths.
– Joey
May 11 '10 at 17:59
@Johannes Rössel: I did a quick google for that but I don't understand it's context' Should I be able to rundir %FOLDERID_SendTo%
from a command prompt? Thanks.
– Binary Worrier
May 14 '10 at 13:32
1
From a batch file you have no choice. When fiddling with this yourself on your machine do whatever works. However, if you put things there with a program you should use the proper APIs to get the folder since%APPDATA%MicrosoftWindowsSendTo
is merely the default path. There is no guarantee that the actual folder really resides there.
– Joey
May 14 '10 at 15:43
Since it is a shell folder, the chances approach 100% that it is located at the default location. However, it may be hard-linked from another location as well. Ordinarily, simply typing the path to a folder in the Run box will open it, but you will get an error without the "shell:" command if target is a symbolic link of some kind.
– Abraxas
Jul 21 '11 at 9:22
add a comment |
Apologies,
A little extra googling found it on How to Geek
The folder is now at %APPDATA%MicrosoftWindowsSendTo
Thanks,
BW
Apologies,
A little extra googling found it on How to Geek
The folder is now at %APPDATA%MicrosoftWindowsSendTo
Thanks,
BW
answered May 11 '10 at 14:53
Binary WorrierBinary Worrier
4511819
4511819
Actually, the folder is represented byFOLDERID_SendTo
. You should never rely in hard-coding default paths.
– Joey
May 11 '10 at 17:59
@Johannes Rössel: I did a quick google for that but I don't understand it's context' Should I be able to rundir %FOLDERID_SendTo%
from a command prompt? Thanks.
– Binary Worrier
May 14 '10 at 13:32
1
From a batch file you have no choice. When fiddling with this yourself on your machine do whatever works. However, if you put things there with a program you should use the proper APIs to get the folder since%APPDATA%MicrosoftWindowsSendTo
is merely the default path. There is no guarantee that the actual folder really resides there.
– Joey
May 14 '10 at 15:43
Since it is a shell folder, the chances approach 100% that it is located at the default location. However, it may be hard-linked from another location as well. Ordinarily, simply typing the path to a folder in the Run box will open it, but you will get an error without the "shell:" command if target is a symbolic link of some kind.
– Abraxas
Jul 21 '11 at 9:22
add a comment |
Actually, the folder is represented byFOLDERID_SendTo
. You should never rely in hard-coding default paths.
– Joey
May 11 '10 at 17:59
@Johannes Rössel: I did a quick google for that but I don't understand it's context' Should I be able to rundir %FOLDERID_SendTo%
from a command prompt? Thanks.
– Binary Worrier
May 14 '10 at 13:32
1
From a batch file you have no choice. When fiddling with this yourself on your machine do whatever works. However, if you put things there with a program you should use the proper APIs to get the folder since%APPDATA%MicrosoftWindowsSendTo
is merely the default path. There is no guarantee that the actual folder really resides there.
– Joey
May 14 '10 at 15:43
Since it is a shell folder, the chances approach 100% that it is located at the default location. However, it may be hard-linked from another location as well. Ordinarily, simply typing the path to a folder in the Run box will open it, but you will get an error without the "shell:" command if target is a symbolic link of some kind.
– Abraxas
Jul 21 '11 at 9:22
Actually, the folder is represented by
FOLDERID_SendTo
. You should never rely in hard-coding default paths.– Joey
May 11 '10 at 17:59
Actually, the folder is represented by
FOLDERID_SendTo
. You should never rely in hard-coding default paths.– Joey
May 11 '10 at 17:59
@Johannes Rössel: I did a quick google for that but I don't understand it's context' Should I be able to run
dir %FOLDERID_SendTo%
from a command prompt? Thanks.– Binary Worrier
May 14 '10 at 13:32
@Johannes Rössel: I did a quick google for that but I don't understand it's context' Should I be able to run
dir %FOLDERID_SendTo%
from a command prompt? Thanks.– Binary Worrier
May 14 '10 at 13:32
1
1
From a batch file you have no choice. When fiddling with this yourself on your machine do whatever works. However, if you put things there with a program you should use the proper APIs to get the folder since
%APPDATA%MicrosoftWindowsSendTo
is merely the default path. There is no guarantee that the actual folder really resides there.– Joey
May 14 '10 at 15:43
From a batch file you have no choice. When fiddling with this yourself on your machine do whatever works. However, if you put things there with a program you should use the proper APIs to get the folder since
%APPDATA%MicrosoftWindowsSendTo
is merely the default path. There is no guarantee that the actual folder really resides there.– Joey
May 14 '10 at 15:43
Since it is a shell folder, the chances approach 100% that it is located at the default location. However, it may be hard-linked from another location as well. Ordinarily, simply typing the path to a folder in the Run box will open it, but you will get an error without the "shell:" command if target is a symbolic link of some kind.
– Abraxas
Jul 21 '11 at 9:22
Since it is a shell folder, the chances approach 100% that it is located at the default location. However, it may be hard-linked from another location as well. Ordinarily, simply typing the path to a folder in the Run box will open it, but you will get an error without the "shell:" command if target is a symbolic link of some kind.
– Abraxas
Jul 21 '11 at 9:22
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f139968%2fhow-to-add-an-item-to-my-send-to-context-menu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown