注意事项
运行完屏蔽或解除屏蔽的.reg文件, 需要重新启动Windows 资源管理器
才能看到效果, 而删除或还原则不需要.
屏蔽"上传到115"和"上传到115组织"右键菜单
屏蔽本机"上传到115"和"上传到115组织"右键菜单
115chrome_hklm_block.reg
https://raw.githubusercontent.com/dnasdw/public_reference/master/Windows%20Registry%20Entries/115chrome_hklm_block.reg
1
2
3
4
5
|
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked]
"{EEE949EB-C9ED-4967-98B0-ED4E543BEFA5}"=""
|
屏蔽当前用户"上传到115"和"上传到115组织"右键菜单
115chrome_hkcu_block.reg
https://raw.githubusercontent.com/dnasdw/public_reference/master/Windows%20Registry%20Entries/115chrome_hkcu_block.reg
1
2
3
4
5
|
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked]
"{EEE949EB-C9ED-4967-98B0-ED4E543BEFA5}"=""
|
解除屏蔽"上传到115"和"上传到115组织"右键菜单
解除屏蔽本机"上传到115"和"上传到115组织"右键菜单
115chrome_hklm_unblock.reg
https://raw.githubusercontent.com/dnasdw/public_reference/master/Windows%20Registry%20Entries/115chrome_hklm_unblock.reg
1
2
3
4
5
|
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked]
"{EEE949EB-C9ED-4967-98B0-ED4E543BEFA5}"=-
|
解除屏蔽当前用户"上传到115"和"上传到115组织"右键菜单
115chrome_hkcu_unblock.reg
https://raw.githubusercontent.com/dnasdw/public_reference/master/Windows%20Registry%20Entries/115chrome_hkcu_unblock.reg
1
2
3
4
5
|
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked]
"{EEE949EB-C9ED-4967-98B0-ED4E543BEFA5}"=-
|
解除屏蔽后清理可能不包含键值的空项
shell_ext_blocked_reg_clean.bat
https://raw.githubusercontent.com/dnasdw/public_reference/master/Batchfile/shell_ext_blocked_reg_clean.bat
1
2
3
4
5
|
%1 mshta vbscript:CreateObject^("Shell.Application"^).ShellExecute^("cmd.exe","/C "^&chr^(34^)^&chr^(34^)^&"%~f0"^&chr^(34^)^&" REM"^&chr^(34^),"","runas",1^)^(window.close^) & GOTO :EOF
PUSHD "%~dp0"
REG QUERY "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked" && ((REG QUERY "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked" | FINDSTR REG_) || REG DELETE "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked" /f)
REG QUERY "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked" && ((REG QUERY "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked" | FINDSTR REG_) || REG DELETE "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Shell Extensions\Blocked" /f)
POPD
|
删除"上传到115"和"上传到115组织"右键菜单
115chrome_hkcr_delete.reg
https://raw.githubusercontent.com/dnasdw/public_reference/master/Windows%20Registry%20Entries/115chrome_hkcr_delete.reg
1
2
3
4
5
6
7
8
9
10
11
12
|
Windows Registry Editor Version 5.00
[-HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers\115ContextMenuExt]
[-HKEY_CLASSES_ROOT\Directory\shellex\ContextMenuHandlers\115ContextMenuExt]
[-HKEY_CLASSES_ROOT\Drive\shellex\ContextMenuHandlers\115ContextMenuExt]
[-HKEY_CLASSES_ROOT\Folder\shellex\ContextMenuHandlers\115ContextMenuExt]
[-HKEY_CLASSES_ROOT\LibraryFolder\ShellEx\ContextMenuHandlers\115ContextMenuExt]
|
还原"上传到115"和"上传到115组织"右键菜单
115chrome_hkcr_add.reg
https://raw.githubusercontent.com/dnasdw/public_reference/master/Windows%20Registry%20Entries/115chrome_hkcr_add.reg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers\115ContextMenuExt]
@="{EEE949EB-C9ED-4967-98B0-ED4E543BEFA5}"
[HKEY_CLASSES_ROOT\Directory\shellex\ContextMenuHandlers\115ContextMenuExt]
@="{EEE949EB-C9ED-4967-98B0-ED4E543BEFA5}"
[HKEY_CLASSES_ROOT\Drive\shellex\ContextMenuHandlers\115ContextMenuExt]
@="{EEE949EB-C9ED-4967-98B0-ED4E543BEFA5}"
[HKEY_CLASSES_ROOT\Folder\shellex\ContextMenuHandlers\115ContextMenuExt]
@="{EEE949EB-C9ED-4967-98B0-ED4E543BEFA5}"
[HKEY_CLASSES_ROOT\LibraryFolder\ShellEx\ContextMenuHandlers\115ContextMenuExt]
@="{EEE949EB-C9ED-4967-98B0-ED4E543BEFA5}"
|