How To Add Or Remove Extract All Context Menu For Compressed Files In Windows 10

Опубликовано: 30 Сентябрь 2024
на канале: All Things Software Related
1,582
11

How To Add Or Remove "Extract All" from Context Menu For Zip Files In Windows 10

Copy this code in a text editor in Windows 10 and save it with .reg , after saving it as .reg file, double click on it to register this reg file and add it to windows registry., this will allow you to enable or disable “extract all†context menu for zip files in Windows 10.


Code to remove Extract All context menu from Windows 10 :


Windows Registry Editor Version 5.00

[-HKEY_CLASSES_ROOT\CompressedFolder\ShellEx\ContextMenuHandlers\{b8cdcb65-b1bf-4b42-9428-1dfdb7ee92af}]


Code to add Extract All context menu to Windows 10 :


Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\CompressedFolder\ShellEx\ContextMenuHandlers\{b8cdcb65-b1bf-4b42-9428-1dfdb7ee92af}]
@="Compressed (zipped) Folder Menu"

-- For opening notepad, click on Search icon, then search for "notepad", then click on first search result
-- Paste copied text in notepad and save it with ".reg" extension. When executed, this registry file will remove "extract all" from context menu for all compressed files
-- Now we need to create another .reg file for re-adding "extract all" in context menu.
-- Copy this text, paste it into notepad and save it with .reg file extension, when executed, this file we add "extract all" in context menu.

Source code of reg files is in description (see first paragraph)