Advertisement
DragonRUJ

EnableZipFolders.reg

Mar 8th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
REG 2.07 KB | None | 0 0
  1. Windows Registry Editor Version 5.00
  2.  
  3. ;---------------------------------------------
  4. ; Enable ZIP/CAB folders in Windows 7/8/10
  5. ;---------------------------------------------
  6. ; By DragonRUJ - 2018
  7.  
  8. ;---------------------------------------------
  9. ; Acknowledgment
  10. ;---------------------------------------------
  11.  
  12. ; I have to thank to:
  13.  
  14. ; - Anand Khanse for his very informative and useful article:
  15. ;     How to disable Windows built-in Zip support
  16. ;     http://www.thewindowsclub.com/disable-windows-built-in-zip
  17.  
  18. ; - NickHunter for his alternative and simple method (there's NO NEED to TAKE OWNERSHIP of these registry keys).
  19.  
  20. ; - Tessa Moore for her request for a script to implement this method.
  21.  
  22. ; IMPORTANT: Always create a system restore point before dealing with the Windows registry.
  23.  
  24. ;---------------------------------------------
  25. ; Enable .ZIP folders
  26. ;---------------------------------------------
  27.  
  28. [HKEY_CLASSES_ROOT\SystemFileAssociations\.zip\CLSID]
  29. @="{E88DCCE0-B7B3-11d1-A9F0-00AA0060FA31}"
  30.  
  31. [HKEY_CLASSES_ROOT\CompressedFolder\ShellEx\StorageHandler]
  32. @="{E88DCCE0-B7B3-11d1-A9F0-00AA0060FA31}"
  33.  
  34. [HKEY_CLASSES_ROOT\CompressedFolder\CLSID]
  35. @="{E88DCCE0-B7B3-11d1-A9F0-00AA0060FA31}"
  36.  
  37. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SystemFileAssociations\.zip\CLSID]
  38. @="{E88DCCE0-B7B3-11d1-A9F0-00AA0060FA31}"
  39.  
  40. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CompressedFolder\ShellEx\StorageHandler]
  41. @="{E88DCCE0-B7B3-11d1-A9F0-00AA0060FA31}"
  42.  
  43. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CompressedFolder\CLSID]
  44. @="{E88DCCE0-B7B3-11d1-A9F0-00AA0060FA31}"
  45.  
  46. ;---------------------------------------------
  47. ; Enable .CAB folders
  48. ;---------------------------------------------
  49.  
  50. [HKEY_CLASSES_ROOT\SystemFileAssociations\.cab\CLSID]
  51. @="{0CD7A5C0-9F37-11CE-AE65-08002B2E1262}"
  52.  
  53. [HKEY_CLASSES_ROOT\CABFolder\CLSID]
  54. @="{0CD7A5C0-9F37-11CE-AE65-08002B2E1262}"
  55.  
  56. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\SystemFileAssociations\.cab\CLSID]
  57. @="{0CD7A5C0-9F37-11CE-AE65-08002B2E1262}"
  58.  
  59. [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CABFolder\CLSID]
  60. @="{0CD7A5C0-9F37-11CE-AE65-08002B2E1262}"
  61.  
  62. ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement