My 'SendTo' items dissapeared (only from contextmenu)

1

I'm running Windows 8.1 x64.

Days ago I've noticed that all the items that I have in the SendTo menu has dissapeared.

They dissapeared only from the menu, I'm an user who customized the sendto items from many years ago, I'm familiar with the usage of this, I have my shortcuts on the corresponding directory in C:\Users\Administrador\AppData\Roaming\Microsoft\Windows\SendTo but any item is shown in the SendTo submenu when I right-click on any file.

If I press SHIFT + RightClick I can see items in the sendto menu, but these items are the folders that I have in My Documents folder, what the...!

I think that maybe some reg-value associated with the sendto menu is pointing the wrong directory?, someone could have idea of what happened with my sendto menu?.

ElektroStudios

Posted 2014-08-21T15:13:56.320

Reputation: 1 282

Answers

0

After doing a lot of researchs and trying to find the root of the problem by testing related solutions, I've fixed my issue with this registry script that fixes the .lnk file association:

Note: Its for Windows 8/8.1

Windows Registry Editor Version 5.00

; Created by: Shawn Brink
; http://www.eightforums.com
; Tutorial: http://www.eightforums.com/tutorials/8486-default-file-associations-restore-windows-8-a.html


[-HKEY_CLASSES_ROOT\.lnk]

[HKEY_CLASSES_ROOT\.lnk]
@="lnkfile"

[HKEY_CLASSES_ROOT\.lnk\ShellEx\{000214EE-0000-0000-C000-000000000046}]
@="{00021401-0000-0000-C000-000000000046}"

[HKEY_CLASSES_ROOT\.lnk\ShellEx\{000214F9-0000-0000-C000-000000000046}]
@="{00021401-0000-0000-C000-000000000046}"

[HKEY_CLASSES_ROOT\.lnk\ShellEx\{00021500-0000-0000-C000-000000000046}]
@="{00021401-0000-0000-C000-000000000046}"

[HKEY_CLASSES_ROOT\.lnk\ShellEx\{BB2E617C-0920-11d1-9A0B-00C04FC2D6C1}]
@="{00021401-0000-0000-C000-000000000046}"

[HKEY_CLASSES_ROOT\.lnk\ShellNew]
"NullFile"=""
"IconPath"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,\
  74,00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,73,\
  00,68,00,65,00,6c,00,6c,00,33,00,32,00,2e,00,64,00,6c,00,6c,00,2c,00,2d,00,\
  31,00,36,00,37,00,36,00,39,00,00,00
"ItemName"="@shell32.dll,-30397"
"Handler"="{ceefea1b-3e29-4ef1-b34c-fec79c4f70af}"
"MenuText"="@shell32.dll,-30318"

[HKEY_CLASSES_ROOT\.lnk\ShellNew\Config]
"DontRename"=""

[-HKEY_CLASSES_ROOT\lnkfile]

[HKEY_CLASSES_ROOT\lnkfile]
@="Shortcut"
"NeverShowExt"=""
"EditFlags"=dword:00000001
"IsShortcut"=""
"FriendlyTypeName"="@shell32.dll,-4153"

[HKEY_CLASSES_ROOT\lnkfile\CLSID]
@="{00021401-0000-0000-C000-000000000046}"

[HKEY_CLASSES_ROOT\lnkfile\shellex\ContextMenuHandlers\OpenContainingFolderMenu]
@="{37ea3a21-7493-4208-a011-7f9ea79ce9f5}"

[HKEY_CLASSES_ROOT\lnkfile\shellex\ContextMenuHandlers\{00021401-0000-0000-C000-000000000046}]
@=""

[HKEY_CLASSES_ROOT\lnkfile\shellex\DropHandler]
@="{00021401-0000-0000-C000-000000000046}"

[HKEY_CLASSES_ROOT\lnkfile\shellex\IconHandler]
@="{00021401-0000-0000-C000-000000000046}"

[HKEY_CLASSES_ROOT\lnkfile\tabsets]
"selection"=dword:00000705

[-HKEY_CLASSES_ROOT\SystemFileAssociations\.lnk]

[HKEY_CLASSES_ROOT\SystemFileAssociations\.lnk]
"FullDetails"="prop:System.PropGroup.Description;System.ItemTypeText"
"FileOperationPrompt"="prop:System.ItemTypeText;System.FileOwner;System.Author;System.Title;System.Subject;System.Comment;System.DateModified;System.Link.TargetParsingPath"

[-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.lnk]

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.lnk\OpenWithProgids]
"lnkfile"=hex(0):

ElektroStudios

Posted 2014-08-21T15:13:56.320

Reputation: 1 282