Home » Questions » Computers [ Ask a new question ]

Add an item to the 'send to' menu for ALL users (winxp)

Add an item to the 'send to' menu for ALL users (winxp)

How to add an item to the 'send to' menu for ALL users (winxp) We want to have a link to a debug log viewer available to all users on a server i'm building. Quite simple to add it to one user (start->run->sendto) but i want it for all. Any ideas thanks?

Asked by: Guest | Views: 326
Total answers/comments: 3
Guest [Entry]

"Here is an idea:

Put a .bat file in your All Users Startup folder (so that it will get run whenever someone logs on).

The .bat file will then copy the shortcut to the users own SendTo folder.

Something like:

copy ""c:\Notepad.lnk"" ""%userprofile%\SendTo"" /Y

(Replace Notepad.lnk with your own shortcut)

Simple."
Guest [Entry]

"The SendTo folder is determined on a per-user basis (usually at C:\Documents and Settings\USER\SendTo). It's an absolute path that's located in the registry, there is no common SendTo folder that applies to all users. You can, however, easily change the location of the SendTo folder without muddling around in the registry.

Simply right-click-drag the SendTo folder to the new location and select ""Move To"". The registry entry will be updated automatically for that user. Unfortunately, you have to do this for each user, or load up that user's registry hive and edit it manually (again, per user).

It would probably be best to update one user's registry (By using 'Move To' or manually) then export that registry key to a file. Then, distribute that file to the users and have them double click it themselves, merging the new SendTo location into their respective registries.

The key is at HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders and my default location was the absolute path, C:\Documents and Settings\Grant\SendTo

The contents of the whatever.reg file that could be distributed would look something like:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders]
""SendTo""=""C:\\Documents and Settings\\Grant\\SendTo""

except with the new file location."
Guest [Entry]

"The SendTo folder is determined on a per-user basis (usually at C:\Documents and Settings\USER\SendTo). It's an absolute path that's located in the registry, there is no common SendTo folder that applies to all users. You can, however, easily change the location of the SendTo folder without muddling around in the registry.

Simply right-click-drag the SendTo folder to the new location and select ""Move To"". The registry entry will be updated automatically for that user. Unfortunately, you have to do this for each user, or load up that user's registry hive and edit it manually (again, per user).

It would probably be best to update one user's registry (By using 'Move To' or manually) then export that registry key to a file. Then, distribute that file to the users and have them double click it themselves, merging the new SendTo location into their respective registries.

The key is at HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders and my default location was the absolute path, C:\Documents and Settings\Grant\SendTo

The contents of the whatever.reg file that could be distributed would look something like:

Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders]
""SendTo""=""C:\\Documents and Settings\\Grant\\SendTo""

except with the new file location."