4

I know there is the question Add an item to the 'send to' menu for ALL users (winxp), but this does not work for Windows 7.

I already know how to add an item to the 'send to' menu of one user by dropping a shortcut file to %APPDATA%\Microsoft\Windows\SendTo (or more correctly, to the folder pointed by the registry key HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\SendTo).

But it seems that there does not exist the HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders\SendTo or similar key.

So is there any way to do this in windows 7?

2 Answers2

5

Answer #1: the solution you linked to in the other question does work, you need to adjust the script.

You put it into

C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup

and it needs to copy the file to the location you mentioned above:

copy "c:\Notepad.lnk" %APPDATA%\Microsoft\Windows\SendTo /y

Answer #2: You can drop it in to any new users' folders automatically by putting it into

C:\Users\Default\AppData\Roaming\Microsoft\Windows\SendTo

The Default profile is copied for each new user at creation.

Peter King
  • 111
  • 2
1

If you are managing your computers / users with Group Policies, you can create a shortcut in the Send To folder.

Here are a couple write up on how to do that:

The only difference from the above write ups is to select "Send To" in the location option.

ETL
  • 321