In a recent update a new Share with Skype context menu item has appeared. How can this item be removed?
PS: There is some information here, but it's not complete:
6 Answers
In case you are using the Skype App, removing the context menu item is trickier.
One way is to delete DllPath under
HKEY_CLASSES_ROOT\PackagedCom\Package\Microsoft.SkypeApp_15.61.100.0_x86__kzf8qxf38zg5c\Class\{776DBC8D-7347-478C-8D71-791E12EF49D8} However updates to the app will probably restore this. Adding the following REG_SZ key
"{776DBC8D-7347-478C-8D71-791E12EF49D8}"="Skype"
to
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked]
is probably a good idea. Restart Windows to take effect.
6
Yet another update: Works in Windows 11 too.
Update: Works in Windows 10 version 21H1 too.
Original answer:
As of Windows 10 version 2004, you can do the following to remove the "Share with Skype" from the context menu:
Run the following
REG ADDcommand in an elevated cmd:REG ADD "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked" /v {776DBC8D-7347-478C-8D71-791E12EF49D8} /d SkypeRestart the Explorer process through Task Manager to see the effect. You do not need to restart Windows.
* Based on the answer given by Ajasja. So all credits go to him. I merely created the REG command.
1On Windows 8 (and Windows 10?), RegEdit found the entry at HKEY_CLASSES_ROOT\*\shell\ShareWithSkype
Deleted that, and the item disappeared from the context menu immediately - no need to reboot / log out.
No need to mess with ShellExView 2.01 because Skype did not show up there anyway.
4There are two main entries for "Share with Skype" in registry.
- To disable one from
Skype for Desktopuse following.regfile:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\ShareWithSkype]
"LegacyDisable"=""Method above survives reinstall. It also survives install if .reg file is merged before installation, so hopefully will survive updates too.
Deleting Skype via Control Panel also wipes this tweak, so manual reinstall requires .reg file to be merged again after deletion/installation.
- To disable another one from
Skype for Windows 10use following.regfile:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked]
"{776DBC8D-7347-478C-8D71-791E12EF49D8}"="Skype" 1 The location has changed to:
Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Classes\PackagedCom\Package\Microsoft.SkypeApp_15.61.87.0_x86__kzf8qxf38zg5c\Class\{776DBC8D-7347-478C-8D71-791E12EF49D8}Manually delete the DllPath value in the Registry Editor. Note that as the application updates it may change so take note of the path and look for a similaur GUID.
Just a reminder, that uninstalling Skype will of course also fix the issue.