Edited to work on vista, here's the fix. Save the below with a .vbs extension.
'--------------------------------------------------------------------
'Applies To : Microsoft Windows XP
'Author : Ramesh Srinivasan - Microsoft MVP (Windows XP Shell)
'Created on : February 19, 2005
'Description : Fixes the Send To menu (missing all the shortcuts)
'Homepage :
http://windowsxp.mvps.org
'More Info :
http://windowsxp.mvps.org/sendtofix.htm
'Requirement : Needs Administrative privileges in Windows XP
'--------------------------------------------------------------------
Set WshShell = CreateObject("WScript.Shell")
USFolderPath = "HKCU\Software\Microsoft\Windows\CurrentVersion\Ex plorer\User
Shell Folders"
On Error resume next
WshShell.RegWrite "HKCR\exefile\shellex\DropHandler\",
"{86C86720-42A0-1069-A2E8-08002B30309D}", "REG_SZ"
WshShell.RegWrite "HKCR\lnkfile\shellex\DropHandler\",
"{00021401-0000-0000-C000-000000000046}", "REG_SZ"
WshShell.RegWrite USFolderPath & "\SendTo",
"%USERPROFILE%\AppData\Roaming\Microsoft\Windows\S endTo", "REG_EXPAND_SZ"
Wshshell.RUN ("regsvr32.exe shell32.dll /i /s")
MsgUser = Msgbox ("Fixed the Send To menu. Restart Windows for the changes
to take effect", 4160, "'Send To' menu fix for Windows XP - Ramesh
Srinivasan")
Set WshShell = Nothing
--
piaqt
http://www.techzonez.com/forums/forumdisplay.php?f=64
"misc5" wrote:
> hi group
> this should be a relatively simple one, but I can't seem to find any vista
> related information about it anywhere on the interweb so your help would be
> appreciated
>
> here's the problem: any shortcuts placed into the SendTo folder don't show
> up in the context menu
>
> adding a new shortcut to the send to context menu is easy enough:
> run: shell:sendto
> - then create the shortcuts you need in the folder that opens, and all being
> well the shortucts are shown in the context menu next time you click there
>
> this worked fine for me until all the various shortcuts disappeared leaving
> me with only the default "Compressed", "Desktop", "Documents", "Mail
> recipients", and DVD-RW drive options left showing
>
> deleting and re-creating the affected shortcuts doesn't help, although
> dropping a copy of notepad.exe (for example) into the folder does result in
> notepad showing up in the menu
>
> this is occuring under vista home premium and an administrator account - any
> ideas anyone?
>
> TAI