~ Add "Eye Candy" to your Right-Click Context Menu ~

Discussion in 'Scripting' started by Dos_Probie, Sep 16, 2012.

  1. Dos_Probie

    Dos_Probie MDL Senior Member

    Jul 18, 2012
    250
    86
    10
    #1 Dos_Probie, Sep 16, 2012
    Last edited by a moderator: Apr 20, 2017
    Adds: Control Panel, Device Manager, Disk Cleanup, Programs and Features, Calculator, Msconfig, Registry Editor and Services with hi-res icons to W7 desktop Computer.

    I know this is nothing new, lots of sites like How-to Geek and Using Winbubble etc. to add the
    standard apps to your context menu, But this reg twk also adds a Icon next to your item that gives you a much more polished and professional look with the ability to control the Position of your app in the top or bottom half of the menu..These are some of my favoites that I use on a daily basis.. Enjoy! Dos_Probie:D

    P.S If you decide to delete the item just add the minus symbol (-)
    ex. [-HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell]

    Code:
    Windows Registry Editor Version 5.00
    ;Dos_Probie
    
    
    ;+== Add 8 Apps (4 top/4 bottom) to W7 Right-Click Menu of My Computer w/icon ==+
    
    ;                               +== TOP POSITION ==+
    ; "CONTROL PANEL" 
    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell]
    @="none"
    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Control Panel]
    "Icon"="Control.exe"
    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Control Panel\command]
    @=hex(2):72,00,75,00,6e,00,64,00,6c,00,6c,00,33,00,32,00,2e,00,65,00,78,00,65,\
      00,20,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,43,00,6f,00,6e,00,74,00,72,00,6f,00,6c,00,5f,00,52,00,75,00,6e,00,44,\
      00,4c,00,4c,00,00,00
    
    ; "DEVICE MANAGER"
    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\DevMgr]
    @=hex(2):40,00,25,00,77,00,69,00,6e,00,64,00,69,00,72,00,25,00,5c,00,73,00,79,\
      00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,64,00,65,00,76,00,6d,00,67,00,\
      72,00,2e,00,64,00,6c,00,6c,00,2c,00,2d,00,34,00,00,00
    "SuppressionPolicy"=dword:4000003c
     "Icon"="CompMgmtLauncher.exe"
    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\DevMgr\command]
    @=hex(2):25,00,77,00,69,00,6e,00,64,00,69,00,72,00,25,00,5c,00,73,00,79,00,73,\
      00,74,00,65,00,6d,00,33,00,32,00,5c,00,6d,00,6d,00,63,00,2e,00,65,00,78,00,\
      65,00,20,00,2f,00,73,00,20,00,25,00,77,00,69,00,6e,00,64,00,69,00,72,00,25,\
      00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,64,00,65,00,\
      76,00,6d,00,67,00,6d,00,74,00,2e,00,6d,00,73,00,63,00,00,00
    
    ; "DISK CLEANUP
    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\DrvCleanUp]
    "Icon"="cleanmgr.exe"
    @="@%windir%\\system32\\shell32.dll,-22026"
    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\DrvCleanUp\command]
    @="cleanmgr.exe"
    
    ; "PROGRAMS AND FEATURES"
    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Programs and Features]
    "Icon"="OptionalFeatures.exe"
    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Programs and Features\command]
    @=hex(2):63,00,6f,00,6e,00,74,00,72,00,6f,00,6c,00,20,00,61,00,70,00,70,00,77,\
      00,69,00,7a,00,2e,00,63,00,70,00,6c,00,00,00
    
    ;                               +== BOTTOM POSITION ==+
    ;"CALCULATOR"
    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Calculator]
    "Icon"="calc.exe"
    "Position"="Bottom"
    @="@%windir%\\system32\\calc.exe"
    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Calculator\command]
    @="calc.exe"
    
    ;"MSCONFIG"
    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\msconfig]
    @="MSCONFIG"
    "Icon"="msconfig.exe"
    "Position"="Bottom"
    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\msconfig\command]
    @="msconfig.exe"
    
    ;"REGISTRY EDITOR"
    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\regedit]
    @="&Registry Editor"
    "Icon"="regedit.exe"
    "Position"="Bottom"
    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\regedit\command]
    @="regedit.exe"
    
    ;"SERVICES"
    [HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\services] 
    @=hex(2):53,00,65,00,72,00,76,00,69,00,63,00,65,00,73,00,00,00 
    "SuppressionPolicy"=dword:4000003c 
    "Icon"="imageres.dll,-67"
    "Position"="Bottom"