├── .gitattributes ├── .gitignore ├── AMD CCC - Add.reg ├── AMD CCC - Remove.reg ├── Add New MD file.reg ├── Bitmap Image in New Context Menu - Add.reg ├── Bitmap Image in New Context Menu - Remove.reg ├── Bitmap Image in New Context Menu - Restore.reg ├── Contact in New Context Menu - Add.reg ├── Contact in New Context Menu - Remove.reg ├── Contact in New Context Menu - Restore.reg ├── Edit with VS Code - Add.reg ├── Edit with VS Code - Remove.reg ├── Edit with VS Code in Extended - Add.reg ├── Explorer Copy NamingTemplates.reg ├── Explorer Copy NamingTemplates.txt ├── Git GUI Here - Move Menu Item to Shift Click.reg ├── GitKraken Context Menu - Add.reg ├── GitKraken Context Menu - Move Menu Item to Shift Click.reg ├── GitKraken Context Menu - Remove.reg ├── Include in Library - Add.reg ├── Include in Library - Remove.reg ├── Intel Graphics - Add.reg ├── Intel Graphics - Remove.reg ├── Journal Document - Add.reg ├── Journal Document - Remove.reg ├── Journal Document - Restore.reg ├── Journal Document.txt ├── OneDrive from the Explorer Side Panel in Windows 10 - Remove.txt ├── Open in Visual Studio (2017) - Add.reg ├── Open in Visual Studio (2017) - Remove.reg ├── Open in Visual Studio - Move to Extended Menu.reg ├── Pin to Quick Access - Add.reg ├── Pin to Quick Access - Remove.reg ├── Pin to Start - Add.reg ├── Pin to Start - Remove.reg ├── Print in Context Menu - Remove.reg ├── README.md ├── RecycleBinInMyComputer - Add.reg ├── RecycleBinInMyComputer - Install.reg ├── RecycleBinInMyComputer - Remove.reg ├── Reset Windows 10 Update.txt ├── Restore Previous Versions Context Menu - Add.reg ├── Restore Previous Versions Context Menu - Remove.reg ├── Restore Previous Versions Properties Tab - Add.reg ├── Restore Previous Versions Properties Tab - Remove.reg ├── Restore Previous Versions Properties Tab.txt ├── Scan with Windows Defender Context Menu Item - Add.reg ├── Scan with Windows Defender Context Menu Item - Remove.reg ├── Send To Context Menu - Add.reg ├── Send To Context Menu - Remove.reg ├── Set as Desktop Background - Add.reg ├── Set as Desktop Background - Remove.reg ├── Set as Desktop Background.txt ├── Share (Win10) - Add.reg ├── Share (Win10) - Remove.reg ├── Share (Win10).txt ├── Share with to Context Menu - Add.reg ├── Share with to Context Menu - Remove.reg ├── Shared Folder Synchronization - Remove.reg ├── Start Winodws Explorer in My Computer.txt ├── TakeOwnership - Add.reg ├── TakeOwnership - Install.reg ├── TakeOwnership - Remove.reg ├── VLC - Add to VLC Playlist - Move to Extended Menu.reg ├── VLC - Play with VLC - Move to Extended Menu.reg ├── Windows 7 Libraries - Add.reg ├── Windows 7 Libraries - Remove.reg ├── Windows 7 Libraries - Restore.reg ├── Windows Media Player Entries in Context Menu - Remove and Add.pdf ├── Windows Media Player Entries in Context Menu - Remove and Add.txt ├── _ImportMyCustomizations.ps1 └── _all.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _MyCustomizations.txt 2 | 3 | # Windows image file caches 4 | Thumbs.db 5 | ehthumbs.db 6 | 7 | # Folder config file 8 | Desktop.ini 9 | 10 | # Recycle Bin used on file shares 11 | $RECYCLE.BIN/ 12 | 13 | # Windows Installer files 14 | *.cab 15 | *.msi 16 | *.msm 17 | *.msp 18 | 19 | # Windows shortcuts 20 | *.lnk 21 | 22 | # ========================= 23 | # Operating System Files 24 | # ========================= 25 | 26 | # OSX 27 | # ========================= 28 | 29 | .DS_Store 30 | .AppleDouble 31 | .LSOverride 32 | 33 | # Thumbnails 34 | ._* 35 | 36 | # Files that might appear in the root of a volume 37 | .DocumentRevisions-V100 38 | .fseventsd 39 | .Spotlight-V100 40 | .TemporaryItems 41 | .Trashes 42 | .VolumeIcon.icns 43 | 44 | # Directories potentially created on remote AFP share 45 | .AppleDB 46 | .AppleDesktop 47 | Network Trash Folder 48 | Temporary Items 49 | .apdisk 50 | -------------------------------------------------------------------------------- /AMD CCC - Add.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/AMD CCC - Add.reg -------------------------------------------------------------------------------- /AMD CCC - Remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/AMD CCC - Remove.reg -------------------------------------------------------------------------------- /Add New MD file.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_CLASSES_ROOT\.md\ShellNew] 4 | "NullFile"="" -------------------------------------------------------------------------------- /Bitmap Image in New Context Menu - Add.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Bitmap Image in New Context Menu - Add.reg -------------------------------------------------------------------------------- /Bitmap Image in New Context Menu - Remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Bitmap Image in New Context Menu - Remove.reg -------------------------------------------------------------------------------- /Bitmap Image in New Context Menu - Restore.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Bitmap Image in New Context Menu - Restore.reg -------------------------------------------------------------------------------- /Contact in New Context Menu - Add.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Contact in New Context Menu - Add.reg -------------------------------------------------------------------------------- /Contact in New Context Menu - Remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Contact in New Context Menu - Remove.reg -------------------------------------------------------------------------------- /Contact in New Context Menu - Restore.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Contact in New Context Menu - Restore.reg -------------------------------------------------------------------------------- /Edit with VS Code - Add.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | ; Open files 3 | [HKEY_CLASSES_ROOT\*\shell\Open with VS Code] 4 | @="Edit with VS Code" 5 | "Icon"="C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe,0" 6 | [HKEY_CLASSES_ROOT\*\shell\Open with VS Code\command] 7 | @="\"C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe\" \"%1\"" 8 | ; This will make it appear when you right click ON a folder 9 | ; The "Icon" line can be removed if you don't want the icon to appear 10 | [HKEY_CLASSES_ROOT\Directory\shell\vscode] 11 | @="Open Folder as VS Code Project" 12 | "Icon"="\"C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe\",0" 13 | [HKEY_CLASSES_ROOT\Directory\shell\vscode\command] 14 | @="\"C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe\" \"%1\"" 15 | ; This will make it appear when you right click INSIDE a folder 16 | ; The "Icon" line can be removed if you don't want the icon to appear 17 | [HKEY_CLASSES_ROOT\Directory\Background\shell\vscode] 18 | @="Open Folder as VS Code Project" 19 | "Icon"="\"C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe\",0" 20 | [HKEY_CLASSES_ROOT\Directory\Background\shell\vscode\command] 21 | @="\"C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe\" \"%V\"" -------------------------------------------------------------------------------- /Edit with VS Code - Remove.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | ; Open files 3 | [-HKEY_CLASSES_ROOT\*\shell\Open with VS Code] 4 | [-HKEY_CLASSES_ROOT\*\shell\Open with VS Code\command] 5 | ; This will make it appear when you right click ON a folder 6 | ; The "Icon" line can be removed if you don't want the icon to appear 7 | [-HKEY_CLASSES_ROOT\Directory\shell\vscode] 8 | [-HKEY_CLASSES_ROOT\Directory\shell\vscode\command] 9 | ; This will make it appear when you right click INSIDE a folder 10 | ; The "Icon" line can be removed if you don't want the icon to appear 11 | [-HKEY_CLASSES_ROOT\Directory\Background\shell\vscode] 12 | [-HKEY_CLASSES_ROOT\Directory\Background\shell\vscode\command] -------------------------------------------------------------------------------- /Edit with VS Code in Extended - Add.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | ; Open files 3 | [HKEY_CLASSES_ROOT\*\shell\Open with VS Code] 4 | @="Edit with VS Code" 5 | "Extended"="" 6 | "Icon"="C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe,0" 7 | [HKEY_CLASSES_ROOT\*\shell\Open with VS Code\command] 8 | @="\"C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe\" \"%1\"" 9 | ; This will make it appear when you right click ON a folder 10 | ; The "Icon" line can be removed if you don't want the icon to appear 11 | [HKEY_CLASSES_ROOT\Directory\shell\vscode] 12 | @="Open Folder as VS Code Project" 13 | "Extended"="" 14 | "Icon"="\"C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe\",0" 15 | [HKEY_CLASSES_ROOT\Directory\shell\vscode\command] 16 | @="\"C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe\" \"%1\"" 17 | ; This will make it appear when you right click INSIDE a folder 18 | ; The "Icon" line can be removed if you don't want the icon to appear 19 | [HKEY_CLASSES_ROOT\Directory\Background\shell\vscode] 20 | @="Open Folder as VS Code Project" 21 | "Extended"="" 22 | "Icon"="\"C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe\",0" 23 | [HKEY_CLASSES_ROOT\Directory\Background\shell\vscode\command] 24 | @="\"C:\\Program Files (x86)\\Microsoft VS Code\\Code.exe\" \"%V\"" -------------------------------------------------------------------------------- /Explorer Copy NamingTemplates.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Explorer Copy NamingTemplates.reg -------------------------------------------------------------------------------- /Explorer Copy NamingTemplates.txt: -------------------------------------------------------------------------------- 1 | http://www.tenforums.com/tutorials/35493-copy-name-extension-template-change-windows.html?filter[1]=File%20Folder%20Settings -------------------------------------------------------------------------------- /Git GUI Here - Move Menu Item to Shift Click.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Git GUI Here - Move Menu Item to Shift Click.reg -------------------------------------------------------------------------------- /GitKraken Context Menu - Add.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/GitKraken Context Menu - Add.reg -------------------------------------------------------------------------------- /GitKraken Context Menu - Move Menu Item to Shift Click.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/GitKraken Context Menu - Move Menu Item to Shift Click.reg -------------------------------------------------------------------------------- /GitKraken Context Menu - Remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/GitKraken Context Menu - Remove.reg -------------------------------------------------------------------------------- /Include in Library - Add.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Include in Library - Add.reg -------------------------------------------------------------------------------- /Include in Library - Remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Include in Library - Remove.reg -------------------------------------------------------------------------------- /Intel Graphics - Add.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Intel Graphics - Add.reg -------------------------------------------------------------------------------- /Intel Graphics - Remove.reg: -------------------------------------------------------------------------------- 1 | REGEDIT4 2 | 3 | [-HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\igfxcui] -------------------------------------------------------------------------------- /Journal Document - Add.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Journal Document - Add.reg -------------------------------------------------------------------------------- /Journal Document - Remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Journal Document - Remove.reg -------------------------------------------------------------------------------- /Journal Document - Restore.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Journal Document - Restore.reg -------------------------------------------------------------------------------- /Journal Document.txt: -------------------------------------------------------------------------------- 1 | http://www.sevenforums.com/tutorials/28677-new-context-menu-remove-restore-default-menu-items.html -------------------------------------------------------------------------------- /OneDrive from the Explorer Side Panel in Windows 10 - Remove.txt: -------------------------------------------------------------------------------- 1 | 1. Press Win+R and type regedit to open up the Registry Editor 2 | 2. Navigate to the HKEY_CLASSES_ROOT\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6} registry key. 3 | 3. Double-click on System.IsPinnedToNameSpaceTree change its value from 1 to 0. 4 | 4. Log off or restart your computer. When you open File Explorer, the OneDrive entry should be gone from the list. -------------------------------------------------------------------------------- /Open in Visual Studio (2017) - Add.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Open in Visual Studio (2017) - Add.reg -------------------------------------------------------------------------------- /Open in Visual Studio (2017) - Remove.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | ; Source 3 | ; https://developercommunity.visualstudio.com/content/problem/26397/disable-context-menu-for-open-in-visual-studio.html 4 | [-HKEY_CLASSES_ROOT\Directory\Background\shell\AnyCode] 5 | [-HKEY_CLASSES_ROOT\Directory\shell\AnyCode] -------------------------------------------------------------------------------- /Open in Visual Studio - Move to Extended Menu.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_CLASSES_ROOT\Directory\Background\shell\AnyCode] 4 | "Extended"="" 5 | 6 | [HKEY_CLASSES_ROOT\Directory\shell\AnyCode] 7 | "Extended"="" 8 | -------------------------------------------------------------------------------- /Pin to Quick Access - Add.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Pin to Quick Access - Add.reg -------------------------------------------------------------------------------- /Pin to Quick Access - Remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Pin to Quick Access - Remove.reg -------------------------------------------------------------------------------- /Pin to Start - Add.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Pin to Start - Add.reg -------------------------------------------------------------------------------- /Pin to Start - Remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Pin to Start - Remove.reg -------------------------------------------------------------------------------- /Print in Context Menu - Remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Print in Context Menu - Remove.reg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Customize Windows Context Menu 2 | 3 | Registry entries to modify Windows context menu. 4 | 5 | :warning: WARNING: Works on my machine. Use at your own risk. :warning: 6 | 7 | # Contribution 8 | 9 | Contributions are welcomed. 10 | Please add registry entriers for removing and adding/restoring an item. 11 | Wherever possible, please add a text file the includes a link to the source of the information. 12 | 13 | ## Naming 14 | 15 | Use the following guidelines to name files: 16 | - Name files like this: `Context Menu Item - Add.reg` and `Context Menu Item - Remove.reg` where `Context Menu Item` is the name of the item to be added or removed. 17 | - This allows for the two registry keys to show up right after each other in a folder listing. 18 | - Use the name of the item as it appears in the context menu. 19 | - Use spaces instead of dashes or underscores 20 | - Use proper capitalization 21 | 22 | # Info 23 | [How to clean up your messy Context Menu - HowToGeek](http://www.howtogeek.com/howto/windows-vista/how-to-clean-up-your-messy-windows-context-menu/) -------------------------------------------------------------------------------- /RecycleBinInMyComputer - Add.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/RecycleBinInMyComputer - Add.reg -------------------------------------------------------------------------------- /RecycleBinInMyComputer - Install.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/RecycleBinInMyComputer - Install.reg -------------------------------------------------------------------------------- /RecycleBinInMyComputer - Remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/RecycleBinInMyComputer - Remove.reg -------------------------------------------------------------------------------- /Reset Windows 10 Update.txt: -------------------------------------------------------------------------------- 1 | net stop wuauserv 2 | net stop cryptSvc 3 | net stop bits 4 | ren C:\Windows\SoftwareDistribution SoftwareDistribution.old 5 | ren C:\Windows\System32\catroot2 catroot2.old 6 | net start wuauserv 7 | net start cryptSvc 8 | net start bits 9 | exit -------------------------------------------------------------------------------- /Restore Previous Versions Context Menu - Add.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Restore Previous Versions Context Menu - Add.reg -------------------------------------------------------------------------------- /Restore Previous Versions Context Menu - Remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Restore Previous Versions Context Menu - Remove.reg -------------------------------------------------------------------------------- /Restore Previous Versions Properties Tab - Add.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Restore Previous Versions Properties Tab - Add.reg -------------------------------------------------------------------------------- /Restore Previous Versions Properties Tab - Remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Restore Previous Versions Properties Tab - Remove.reg -------------------------------------------------------------------------------- /Restore Previous Versions Properties Tab.txt: -------------------------------------------------------------------------------- 1 | http://www.vistax64.com/tutorials/170081-previous-versions-tab-restore-remove-properties.html -------------------------------------------------------------------------------- /Scan with Windows Defender Context Menu Item - Add.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Scan with Windows Defender Context Menu Item - Add.reg -------------------------------------------------------------------------------- /Scan with Windows Defender Context Menu Item - Remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Scan with Windows Defender Context Menu Item - Remove.reg -------------------------------------------------------------------------------- /Send To Context Menu - Add.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Send To Context Menu - Add.reg -------------------------------------------------------------------------------- /Send To Context Menu - Remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Send To Context Menu - Remove.reg -------------------------------------------------------------------------------- /Set as Desktop Background - Add.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Set as Desktop Background - Add.reg -------------------------------------------------------------------------------- /Set as Desktop Background - Remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Set as Desktop Background - Remove.reg -------------------------------------------------------------------------------- /Set as Desktop Background.txt: -------------------------------------------------------------------------------- 1 | Source 2 | http://www.tenforums.com/tutorials/26720-set-desktop-background-add-remove-context-menu-windows-10-a.html -------------------------------------------------------------------------------- /Share (Win10) - Add.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Share (Win10) - Add.reg -------------------------------------------------------------------------------- /Share (Win10) - Remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Share (Win10) - Remove.reg -------------------------------------------------------------------------------- /Share (Win10).txt: -------------------------------------------------------------------------------- 1 | Source for the keys to add/remove: https://www.thewindowsclub.com/remove-share-button-context-menu-windows-10 2 | -------------------------------------------------------------------------------- /Share with to Context Menu - Add.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Share with to Context Menu - Add.reg -------------------------------------------------------------------------------- /Share with to Context Menu - Remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Share with to Context Menu - Remove.reg -------------------------------------------------------------------------------- /Shared Folder Synchronization - Remove.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [-HKEY_CLASSES_ROOT\CLSID\{6C467336-8281-4E60-8204-430CED96822D}] -------------------------------------------------------------------------------- /Start Winodws Explorer in My Computer.txt: -------------------------------------------------------------------------------- 1 | %SystemRoot%\explorer.exe /e,::{20d04fe0-3aea-1069-a2d8-08002b30309d} 2 | 3 | http://tech.gaeatimes.com/index.php/archive/windows-7-hack-start-windows-explorer-from-my-computer/ -------------------------------------------------------------------------------- /TakeOwnership - Add.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_CLASSES_ROOT\*\shell\runas] 4 | @="Take Ownership" 5 | "NoWorkingDirectory"="" 6 | 7 | [HKEY_CLASSES_ROOT\*\shell\runas\command] 8 | @="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F" 9 | "IsolatedCommand"="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F" 10 | 11 | [HKEY_CLASSES_ROOT\Directory\shell\runas] 12 | @="Take Ownership" 13 | "NoWorkingDirectory"="" 14 | 15 | [HKEY_CLASSES_ROOT\Directory\shell\runas\command] 16 | @="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t" 17 | "IsolatedCommand"="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t" -------------------------------------------------------------------------------- /TakeOwnership - Install.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_CLASSES_ROOT\*\shell\runas] 4 | @="Take Ownership" 5 | "NoWorkingDirectory"="" 6 | 7 | [HKEY_CLASSES_ROOT\*\shell\runas\command] 8 | @="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F" 9 | "IsolatedCommand"="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F" 10 | 11 | [HKEY_CLASSES_ROOT\Directory\shell\runas] 12 | @="Take Ownership" 13 | "NoWorkingDirectory"="" 14 | 15 | [HKEY_CLASSES_ROOT\Directory\shell\runas\command] 16 | @="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t" 17 | "IsolatedCommand"="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t" -------------------------------------------------------------------------------- /TakeOwnership - Remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/TakeOwnership - Remove.reg -------------------------------------------------------------------------------- /VLC - Add to VLC Playlist - Move to Extended Menu.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_CLASSES_ROOT\Directory\shell\AddToPlaylistVLC] 4 | "Extended"="" 5 | -------------------------------------------------------------------------------- /VLC - Play with VLC - Move to Extended Menu.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_CLASSES_ROOT\Directory\shell\PlayWithVLC] 4 | "Extended"="" 5 | -------------------------------------------------------------------------------- /Windows 7 Libraries - Add.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{031E4825-7B94-4dc3-B131-E946B44C8DD5}] 4 | @="UsersLibraries" 5 | "Removal Message"="@shell32.dll,-9047" 6 | 7 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{2112AB0A-C86A-4ffe-A368-0DE96E47012E}] 8 | "Name"="MusicLibrary" 9 | "Category"=dword:00000004 10 | "ParsingName"="::{031E4825-7B94-4dc3-B131-E946B44C8DD5}\\{2112AB0A-C86A-4ffe-A368-0DE96E47012E}" 11 | "Stream"=dword:00000001 12 | "StreamResource"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,\ 13 | 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,\ 14 | 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,\ 15 | 2d,00,32,00,00,00 16 | "StreamResourceType"="LIBRARY" 17 | "RelativePath"="Music.library-ms" 18 | "ParentFolder"="{1B3EA5DC-B587-4786-B4EF-BD1DC332AEAE}" 19 | "Icon"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,\ 20 | 00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,69,00,\ 21 | 6d,00,61,00,67,00,65,00,72,00,65,00,73,00,2e,00,64,00,6c,00,6c,00,2c,00,2d,\ 22 | 00,31,00,30,00,30,00,34,00,00,00 23 | "InfoTip"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,\ 24 | 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,\ 25 | 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,\ 26 | 2d,00,31,00,32,00,36,00,38,00,39,00,00,00 27 | "LocalizedName"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,\ 28 | 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,\ 29 | 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,\ 30 | 2c,00,2d,00,33,00,34,00,35,00,38,00,34,00,00,00 31 | "PreCreate"=dword:00000001 32 | 33 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{2112AB0A-C86A-4ffe-A368-0DE96E47012E}\PropertyBag] 34 | "FoldersDependentOn"="{4BD8D571-6D19-48D3-BE97-422220080E43};{3214FAB5-9757-4298-BB61-92A9DEAA44FF}" 35 | 36 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{491E922F-5643-4af4-A7EB-4E7A138D8174}] 37 | "Name"="VideosLibrary" 38 | "Category"=dword:00000004 39 | "ParsingName"="::{031E4825-7B94-4dc3-B131-E946B44C8DD5}\\{491E922F-5643-4af4-A7EB-4E7A138D8174}" 40 | "Stream"=dword:00000001 41 | "StreamResource"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,\ 42 | 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,\ 43 | 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,\ 44 | 2d,00,34,00,00,00 45 | "StreamResourceType"="LIBRARY" 46 | "RelativePath"="Videos.library-ms" 47 | "ParentFolder"="{1B3EA5DC-B587-4786-B4EF-BD1DC332AEAE}" 48 | "Icon"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,\ 49 | 00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,69,00,\ 50 | 6d,00,61,00,67,00,65,00,72,00,65,00,73,00,2e,00,64,00,6c,00,6c,00,2c,00,2d,\ 51 | 00,31,00,30,00,30,00,35,00,00,00 52 | "InfoTip"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,\ 53 | 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,\ 54 | 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,\ 55 | 2d,00,31,00,32,00,36,00,39,00,30,00,00,00 56 | "LocalizedName"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,\ 57 | 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,\ 58 | 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,\ 59 | 2c,00,2d,00,33,00,34,00,36,00,32,00,30,00,00,00 60 | "PreCreate"=dword:00000001 61 | 62 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{491E922F-5643-4af4-A7EB-4E7A138D8174}\PropertyBag] 63 | "FoldersDependentOn"="{18989B1D-99B5-455B-841C-AB7C74E4DDFC};{2400183A-6185-49FB-A2D8-4A392A602BA3}" 64 | 65 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{7b0db17d-9cd2-4a93-9733-46cc89022e7c}] 66 | "Name"="DocumentsLibrary" 67 | "Category"=dword:00000004 68 | "ParsingName"="::{031E4825-7B94-4dc3-B131-E946B44C8DD5}\\{7b0db17d-9cd2-4a93-9733-46cc89022e7c}" 69 | "Stream"=dword:00000001 70 | "StreamResource"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,\ 71 | 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,\ 72 | 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,\ 73 | 2d,00,31,00,00,00 74 | "StreamResourceType"="LIBRARY" 75 | "RelativePath"="Documents.library-ms" 76 | "ParentFolder"="{1B3EA5DC-B587-4786-B4EF-BD1DC332AEAE}" 77 | "Icon"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,\ 78 | 00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,69,00,\ 79 | 6d,00,61,00,67,00,65,00,72,00,65,00,73,00,2e,00,64,00,6c,00,6c,00,2c,00,2d,\ 80 | 00,31,00,30,00,30,00,32,00,00,00 81 | "LocalizedName"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,\ 82 | 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,\ 83 | 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,\ 84 | 2c,00,2d,00,33,00,34,00,35,00,37,00,35,00,00,00 85 | "PreCreate"=dword:00000001 86 | 87 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{7b0db17d-9cd2-4a93-9733-46cc89022e7c}\PropertyBag] 88 | "FoldersDependentOn"="{FDD39AD0-238F-46AF-ADB4-6C85480369C7};{ED4824AF-DCE4-45A8-81E2-FC7965083634}" 89 | 90 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{A302545D-DEFF-464b-ABE8-61C8648D939B}] 91 | "Name"="UsersLibrariesFolder" 92 | "Category"=dword:00000001 93 | "ParsingName"="::{031E4825-7B94-4dc3-B131-E946B44C8DD5}" 94 | 95 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{A302545D-DEFF-464b-ABE8-61C8648D939B}\PropertyBag] 96 | "NoCustomize"=dword:00000001 97 | 98 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{A990AE9F-A03B-4e80-94BC-9912D7504104}] 99 | "Name"="PicturesLibrary" 100 | "Category"=dword:00000004 101 | "ParsingName"="::{031E4825-7B94-4dc3-B131-E946B44C8DD5}\\{A990AE9F-A03B-4e80-94BC-9912D7504104}" 102 | "Stream"=dword:00000001 103 | "StreamResource"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,\ 104 | 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,\ 105 | 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,\ 106 | 2d,00,33,00,00,00 107 | "StreamResourceType"="LIBRARY" 108 | "RelativePath"="Pictures.library-ms" 109 | "ParentFolder"="{1B3EA5DC-B587-4786-B4EF-BD1DC332AEAE}" 110 | "Icon"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,\ 111 | 00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,69,00,\ 112 | 6d,00,61,00,67,00,65,00,72,00,65,00,73,00,2e,00,64,00,6c,00,6c,00,2c,00,2d,\ 113 | 00,31,00,30,00,30,00,33,00,00,00 114 | "InfoTip"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,\ 115 | 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,\ 116 | 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,\ 117 | 2d,00,31,00,32,00,36,00,38,00,38,00,00,00 118 | "LocalizedName"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,\ 119 | 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,\ 120 | 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,\ 121 | 2c,00,2d,00,33,00,34,00,35,00,39,00,35,00,00,00 122 | "PreCreate"=dword:00000001 123 | 124 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{A990AE9F-A03B-4e80-94BC-9912D7504104}\PropertyBag] 125 | "FoldersDependentOn"="{33E28130-4E1E-4676-835A-98395C3BC3BB};{B6EBFB86-6907-413C-9AF7-4FC2ABF07CC5}" 126 | 127 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel] 128 | "{031E4825-7B94-4dc3-B131-E946B44C8DD5}"=dword:00000001 129 | 130 | [HKEY_CLASSES_ROOT\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}] 131 | @="UsersLibraries" 132 | "SortOrderIndex"=dword:00000042 133 | "LocalizedString"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,\ 134 | 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,\ 135 | 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,\ 136 | 2c,00,2d,00,35,00,30,00,36,00,39,00,31,00,00,00 137 | "System.PropList.DetailsPaneNullSelect"="prop:" 138 | "System.PropList.DetailsPaneNullSelectTitle"="prop:System.FileCount" 139 | 140 | [HKEY_CLASSES_ROOT\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\DefaultIcon] 141 | @=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,\ 142 | 00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,69,00,6d,00,\ 143 | 61,00,67,00,65,00,72,00,65,00,73,00,2e,00,64,00,6c,00,6c,00,2c,00,2d,00,31,\ 144 | 00,30,00,32,00,33,00,00,00 145 | 146 | [HKEY_CLASSES_ROOT\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\InProcServer32] 147 | @=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,\ 148 | 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,\ 149 | 65,00,6c,00,6c,00,33,00,32,00,2e,00,64,00,6c,00,6c,00,00,00 150 | "ThreadingModel"="Apartment" 151 | 152 | [HKEY_CLASSES_ROOT\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\shell] 153 | 154 | [HKEY_CLASSES_ROOT\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\shell\restorelibraries] 155 | "MUIVerb"="@shell32.dll,-34645" 156 | "Description"="@shell32.dll,-34646" 157 | "SeparatorBefore"=dword:00000001 158 | "SeparatorAfter"=dword:00000001 159 | 160 | [HKEY_CLASSES_ROOT\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\shell\restorelibraries\command] 161 | "DelegateExecute"="{c51b83e5-9edd-4250-b45a-da672ee3c70e}" 162 | 163 | [HKEY_CLASSES_ROOT\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\ShellFolder] 164 | "QueryForOverlay"="" 165 | "HideOnDesktopPerUser"="" 166 | "PinToNameSpaceTree"="" 167 | "Attributes"=dword:b080010d 168 | 169 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}] 170 | @="UsersLibraries" 171 | "SortOrderIndex"=dword:00000042 172 | "LocalizedString"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,\ 173 | 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,\ 174 | 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,\ 175 | 2c,00,2d,00,35,00,30,00,36,00,39,00,31,00,00,00 176 | "System.PropList.DetailsPaneNullSelect"="prop:" 177 | "System.PropList.DetailsPaneNullSelectTitle"="prop:System.FileCount" 178 | 179 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\DefaultIcon] 180 | @=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,\ 181 | 00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,69,00,6d,00,\ 182 | 61,00,67,00,65,00,72,00,65,00,73,00,2e,00,64,00,6c,00,6c,00,2c,00,2d,00,31,\ 183 | 00,30,00,32,00,33,00,00,00 184 | 185 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\InProcServer32] 186 | @=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,\ 187 | 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,\ 188 | 65,00,6c,00,6c,00,33,00,32,00,2e,00,64,00,6c,00,6c,00,00,00 189 | "ThreadingModel"="Apartment" 190 | 191 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\shell] 192 | 193 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\shell\restorelibraries] 194 | "MUIVerb"="@shell32.dll,-34645" 195 | "Description"="@shell32.dll,-34646" 196 | "SeparatorBefore"=dword:00000001 197 | "SeparatorAfter"=dword:00000001 198 | 199 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\shell\restorelibraries\command] 200 | "DelegateExecute"="{c51b83e5-9edd-4250-b45a-da672ee3c70e}" 201 | 202 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\ShellFolder] 203 | "QueryForOverlay"="" 204 | "HideOnDesktopPerUser"="" 205 | "PinToNameSpaceTree"="" 206 | "Attributes"=dword:b080010d -------------------------------------------------------------------------------- /Windows 7 Libraries - Remove.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Windows 7 Libraries - Remove.reg -------------------------------------------------------------------------------- /Windows 7 Libraries - Restore.reg: -------------------------------------------------------------------------------- 1 | Windows Registry Editor Version 5.00 2 | 3 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Desktop\NameSpace\{031E4825-7B94-4dc3-B131-E946B44C8DD5}] 4 | @="UsersLibraries" 5 | "Removal Message"="@shell32.dll,-9047" 6 | 7 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{2112AB0A-C86A-4ffe-A368-0DE96E47012E}] 8 | "Name"="MusicLibrary" 9 | "Category"=dword:00000004 10 | "ParsingName"="::{031E4825-7B94-4dc3-B131-E946B44C8DD5}\\{2112AB0A-C86A-4ffe-A368-0DE96E47012E}" 11 | "Stream"=dword:00000001 12 | "StreamResource"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,\ 13 | 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,\ 14 | 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,\ 15 | 2d,00,32,00,00,00 16 | "StreamResourceType"="LIBRARY" 17 | "RelativePath"="Music.library-ms" 18 | "ParentFolder"="{1B3EA5DC-B587-4786-B4EF-BD1DC332AEAE}" 19 | "Icon"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,\ 20 | 00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,69,00,\ 21 | 6d,00,61,00,67,00,65,00,72,00,65,00,73,00,2e,00,64,00,6c,00,6c,00,2c,00,2d,\ 22 | 00,31,00,30,00,30,00,34,00,00,00 23 | "InfoTip"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,\ 24 | 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,\ 25 | 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,\ 26 | 2d,00,31,00,32,00,36,00,38,00,39,00,00,00 27 | "LocalizedName"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,\ 28 | 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,\ 29 | 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,\ 30 | 2c,00,2d,00,33,00,34,00,35,00,38,00,34,00,00,00 31 | "PreCreate"=dword:00000001 32 | 33 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{2112AB0A-C86A-4ffe-A368-0DE96E47012E}\PropertyBag] 34 | "FoldersDependentOn"="{4BD8D571-6D19-48D3-BE97-422220080E43};{3214FAB5-9757-4298-BB61-92A9DEAA44FF}" 35 | 36 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{491E922F-5643-4af4-A7EB-4E7A138D8174}] 37 | "Name"="VideosLibrary" 38 | "Category"=dword:00000004 39 | "ParsingName"="::{031E4825-7B94-4dc3-B131-E946B44C8DD5}\\{491E922F-5643-4af4-A7EB-4E7A138D8174}" 40 | "Stream"=dword:00000001 41 | "StreamResource"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,\ 42 | 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,\ 43 | 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,\ 44 | 2d,00,34,00,00,00 45 | "StreamResourceType"="LIBRARY" 46 | "RelativePath"="Videos.library-ms" 47 | "ParentFolder"="{1B3EA5DC-B587-4786-B4EF-BD1DC332AEAE}" 48 | "Icon"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,\ 49 | 00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,69,00,\ 50 | 6d,00,61,00,67,00,65,00,72,00,65,00,73,00,2e,00,64,00,6c,00,6c,00,2c,00,2d,\ 51 | 00,31,00,30,00,30,00,35,00,00,00 52 | "InfoTip"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,\ 53 | 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,\ 54 | 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,\ 55 | 2d,00,31,00,32,00,36,00,39,00,30,00,00,00 56 | "LocalizedName"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,\ 57 | 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,\ 58 | 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,\ 59 | 2c,00,2d,00,33,00,34,00,36,00,32,00,30,00,00,00 60 | "PreCreate"=dword:00000001 61 | 62 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{491E922F-5643-4af4-A7EB-4E7A138D8174}\PropertyBag] 63 | "FoldersDependentOn"="{18989B1D-99B5-455B-841C-AB7C74E4DDFC};{2400183A-6185-49FB-A2D8-4A392A602BA3}" 64 | 65 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{7b0db17d-9cd2-4a93-9733-46cc89022e7c}] 66 | "Name"="DocumentsLibrary" 67 | "Category"=dword:00000004 68 | "ParsingName"="::{031E4825-7B94-4dc3-B131-E946B44C8DD5}\\{7b0db17d-9cd2-4a93-9733-46cc89022e7c}" 69 | "Stream"=dword:00000001 70 | "StreamResource"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,\ 71 | 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,\ 72 | 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,\ 73 | 2d,00,31,00,00,00 74 | "StreamResourceType"="LIBRARY" 75 | "RelativePath"="Documents.library-ms" 76 | "ParentFolder"="{1B3EA5DC-B587-4786-B4EF-BD1DC332AEAE}" 77 | "Icon"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,\ 78 | 00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,69,00,\ 79 | 6d,00,61,00,67,00,65,00,72,00,65,00,73,00,2e,00,64,00,6c,00,6c,00,2c,00,2d,\ 80 | 00,31,00,30,00,30,00,32,00,00,00 81 | "LocalizedName"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,\ 82 | 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,\ 83 | 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,\ 84 | 2c,00,2d,00,33,00,34,00,35,00,37,00,35,00,00,00 85 | "PreCreate"=dword:00000001 86 | 87 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{7b0db17d-9cd2-4a93-9733-46cc89022e7c}\PropertyBag] 88 | "FoldersDependentOn"="{FDD39AD0-238F-46AF-ADB4-6C85480369C7};{ED4824AF-DCE4-45A8-81E2-FC7965083634}" 89 | 90 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{A302545D-DEFF-464b-ABE8-61C8648D939B}] 91 | "Name"="UsersLibrariesFolder" 92 | "Category"=dword:00000001 93 | "ParsingName"="::{031E4825-7B94-4dc3-B131-E946B44C8DD5}" 94 | 95 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{A302545D-DEFF-464b-ABE8-61C8648D939B}\PropertyBag] 96 | "NoCustomize"=dword:00000001 97 | 98 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{A990AE9F-A03B-4e80-94BC-9912D7504104}] 99 | "Name"="PicturesLibrary" 100 | "Category"=dword:00000004 101 | "ParsingName"="::{031E4825-7B94-4dc3-B131-E946B44C8DD5}\\{A990AE9F-A03B-4e80-94BC-9912D7504104}" 102 | "Stream"=dword:00000001 103 | "StreamResource"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,\ 104 | 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,\ 105 | 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,\ 106 | 2d,00,33,00,00,00 107 | "StreamResourceType"="LIBRARY" 108 | "RelativePath"="Pictures.library-ms" 109 | "ParentFolder"="{1B3EA5DC-B587-4786-B4EF-BD1DC332AEAE}" 110 | "Icon"=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,\ 111 | 00,25,00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,69,00,\ 112 | 6d,00,61,00,67,00,65,00,72,00,65,00,73,00,2e,00,64,00,6c,00,6c,00,2c,00,2d,\ 113 | 00,31,00,30,00,30,00,33,00,00,00 114 | "InfoTip"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,\ 115 | 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,\ 116 | 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,\ 117 | 2d,00,31,00,32,00,36,00,38,00,38,00,00,00 118 | "LocalizedName"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,\ 119 | 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,\ 120 | 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,\ 121 | 2c,00,2d,00,33,00,34,00,35,00,39,00,35,00,00,00 122 | "PreCreate"=dword:00000001 123 | 124 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\FolderDescriptions\{A990AE9F-A03B-4e80-94BC-9912D7504104}\PropertyBag] 125 | "FoldersDependentOn"="{33E28130-4E1E-4676-835A-98395C3BC3BB};{B6EBFB86-6907-413C-9AF7-4FC2ABF07CC5}" 126 | 127 | [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel] 128 | "{031E4825-7B94-4dc3-B131-E946B44C8DD5}"=dword:00000001 129 | 130 | [HKEY_CLASSES_ROOT\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}] 131 | @="UsersLibraries" 132 | "SortOrderIndex"=dword:00000042 133 | "LocalizedString"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,\ 134 | 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,\ 135 | 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,\ 136 | 2c,00,2d,00,35,00,30,00,36,00,39,00,31,00,00,00 137 | "System.PropList.DetailsPaneNullSelect"="prop:" 138 | "System.PropList.DetailsPaneNullSelectTitle"="prop:System.FileCount" 139 | 140 | [HKEY_CLASSES_ROOT\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\DefaultIcon] 141 | @=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,\ 142 | 00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,69,00,6d,00,\ 143 | 61,00,67,00,65,00,72,00,65,00,73,00,2e,00,64,00,6c,00,6c,00,2c,00,2d,00,31,\ 144 | 00,30,00,32,00,33,00,00,00 145 | 146 | [HKEY_CLASSES_ROOT\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\InProcServer32] 147 | @=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,\ 148 | 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,\ 149 | 65,00,6c,00,6c,00,33,00,32,00,2e,00,64,00,6c,00,6c,00,00,00 150 | "ThreadingModel"="Apartment" 151 | 152 | [HKEY_CLASSES_ROOT\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\shell] 153 | 154 | [HKEY_CLASSES_ROOT\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\shell\restorelibraries] 155 | "MUIVerb"="@shell32.dll,-34645" 156 | "Description"="@shell32.dll,-34646" 157 | "SeparatorBefore"=dword:00000001 158 | "SeparatorAfter"=dword:00000001 159 | 160 | [HKEY_CLASSES_ROOT\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\shell\restorelibraries\command] 161 | "DelegateExecute"="{c51b83e5-9edd-4250-b45a-da672ee3c70e}" 162 | 163 | [HKEY_CLASSES_ROOT\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\ShellFolder] 164 | "QueryForOverlay"="" 165 | "HideOnDesktopPerUser"="" 166 | "PinToNameSpaceTree"="" 167 | "Attributes"=dword:b080010d 168 | 169 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}] 170 | @="UsersLibraries" 171 | "SortOrderIndex"=dword:00000042 172 | "LocalizedString"=hex(2):40,00,25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,\ 173 | 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,\ 174 | 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,\ 175 | 2c,00,2d,00,35,00,30,00,36,00,39,00,31,00,00,00 176 | "System.PropList.DetailsPaneNullSelect"="prop:" 177 | "System.PropList.DetailsPaneNullSelectTitle"="prop:System.FileCount" 178 | 179 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\DefaultIcon] 180 | @=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,\ 181 | 00,5c,00,73,00,79,00,73,00,74,00,65,00,6d,00,33,00,32,00,5c,00,69,00,6d,00,\ 182 | 61,00,67,00,65,00,72,00,65,00,73,00,2e,00,64,00,6c,00,6c,00,2c,00,2d,00,31,\ 183 | 00,30,00,32,00,33,00,00,00 184 | 185 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\InProcServer32] 186 | @=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,\ 187 | 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,\ 188 | 65,00,6c,00,6c,00,33,00,32,00,2e,00,64,00,6c,00,6c,00,00,00 189 | "ThreadingModel"="Apartment" 190 | 191 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\shell] 192 | 193 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\shell\restorelibraries] 194 | "MUIVerb"="@shell32.dll,-34645" 195 | "Description"="@shell32.dll,-34646" 196 | "SeparatorBefore"=dword:00000001 197 | "SeparatorAfter"=dword:00000001 198 | 199 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\shell\restorelibraries\command] 200 | "DelegateExecute"="{c51b83e5-9edd-4250-b45a-da672ee3c70e}" 201 | 202 | [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{031E4825-7B94-4dc3-B131-E946B44C8DD5}\ShellFolder] 203 | "QueryForOverlay"="" 204 | "HideOnDesktopPerUser"="" 205 | "PinToNameSpaceTree"="" 206 | "Attributes"=dword:b080010d -------------------------------------------------------------------------------- /Windows Media Player Entries in Context Menu - Remove and Add.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmrEldib/WindowsContextMenuCustomizations/d3e2919f4c0746a058860f9e8a2874dfee4d36d0/Windows Media Player Entries in Context Menu - Remove and Add.pdf -------------------------------------------------------------------------------- /Windows Media Player Entries in Context Menu - Remove and Add.txt: -------------------------------------------------------------------------------- 1 | http://www.intowindows.com/how-to-remove-windows-media-player-entries-from-context-menu-without-using-third-party-tools/ 2 | 3 | -------------------------------------------------------------------------------- /_ImportMyCustomizations.ps1: -------------------------------------------------------------------------------- 1 | $scriptPath = split-path -parent $MyInvocation.MyCommand.Definition 2 | $customizationsFile = Join-Path $scriptPath "_MyCustomizations.txt" 3 | 4 | if (Test-Path $customizationsFile) { 5 | foreach ($line in Get-Content $customizationsFile) { 6 | if ($line.EndsWith(".reg")) { 7 | $file = Join-Path $scriptPath .\$line 8 | Invoke-Expression 'reg import "$file"' 9 | Write-Output "Imported '$line'" 10 | } 11 | } 12 | } 13 | else { 14 | Write-Output("Couldn't find _MyCustomizations.txt file") 15 | } -------------------------------------------------------------------------------- /_all.txt: -------------------------------------------------------------------------------- 1 | .gitattributes 2 | .gitignore 3 | Add New MD file.reg 4 | AMD CCC - Add.reg 5 | AMD CCC - Remove.reg 6 | Bitmap Image in New Context Menu - Add.reg 7 | Bitmap Image in New Context Menu - Remove.reg 8 | Contact in New Context Menu - Add.reg 9 | Contact in New Context Menu - Remove.reg 10 | Edit with VS Code - Add.reg 11 | Edit with VS Code - Remove.reg 12 | Explorer Copy NamingTemplates.reg 13 | Explorer Copy NamingTemplates.txt 14 | GitKraken Context Menu - Add.reg 15 | GitKraken Context Menu - Move Menu Item to Shift Click.reg 16 | GitKraken Context Menu - Remove.reg 17 | Include in Library - Add.reg 18 | Include in Library - Remove.reg 19 | Intel Graphics - Add.reg 20 | Intel Graphics - Remove.reg 21 | Journal Document - Add.reg 22 | Journal Document - Remove.reg 23 | Journal Document.txt 24 | OneDrive from the Explorer Side Panel in Windows 10 - Remove.txt 25 | Pin to Quick Access - Add.reg 26 | Pin to Quick Access - Remove.reg 27 | Pin to Start - Add.reg 28 | Pin to Start - Remove.reg 29 | Print in Context Menu - Remove.reg 30 | README.md 31 | RecycleBinInMyComputer - Add.reg 32 | RecycleBinInMyComputer - Remove.reg 33 | Remove-Folders-From-This-PC-on-Windows-10 34 | Reset Windows 10 Update.txt 35 | Restore Previous Versions Context Menu - Add.reg 36 | Restore Previous Versions Context Menu - Remove.reg 37 | Restore Previous Versions Properties Tab - Add.reg 38 | Restore Previous Versions Properties Tab - Remove.reg 39 | Restore Previous Versions Properties Tab.txt 40 | Scan with Windows Defender Context Menu Item - Add.reg 41 | Scan with Windows Defender Context Menu Item - Remove.reg 42 | Send To Context Menu - Add.reg 43 | Send To Context Menu - Remove.reg 44 | Set as Desktop Background - Add.reg 45 | Set as Desktop Background - Remove.reg 46 | Set as Desktop Background.txt 47 | Share with to Context Menu - Add.reg 48 | Share with to Context Menu - Remove.reg 49 | Shared Folder Synchronization - Remove.reg 50 | Start Winodws Explorer in My Computer.txt 51 | TakeOwnership - Add.reg 52 | TakeOwnership - Remove.reg 53 | Windows 7 Libraries - Add.reg 54 | Windows 7 Libraries - Remove.reg 55 | Windows Media Player Entries in Context Menu - Remove and Add.pdf 56 | Windows Media Player Entries in Context Menu - Remove and Add.txt 57 | _all.txt 58 | _ImportMyCustomizations.ps1 59 | _MyCustomizations.txt 60 | --------------------------------------------------------------------------------