之前小编为大家介绍过《Win10如何在文件右键菜单中添加哈希值校验选项?》。不少用户反馈,能否把所有哈希值校验算法添加到文件右键菜单中,最好是层叠菜单的形式。其实是有办法的,同样需要创建一个注册表文件并添加到注册表中,下面就来看看具体的操作步骤。

那么在Win10系统下,如何将所有哈希值校验算法添加到文件右键的层叠菜单里呢?

1. 把如下内容复制到记事本中:

01 windows Registry Editor Version 5.00

02 [HKEY_CLASSES_ROOT*shell文件哈希校验]

03 "SubCommands" = "MACTripleDES;MD5;RIPEMD160;SHA1;SHA256;SHA384;SHA512"

04 "MUIVerb" = "文件哈希校验"

05 [HKEY_LOCAL_MACHINESOFTWAREMicrosoft window sCurrentVersionExplorerCommandStoreshellMACTripleDES]

06 @ = "MACTripleDES"

07 [HKEY_LOCAL_MACHINESOFTWAREMicrosoft wind owsCurrentVersionExplorerCommandStoreshellMACTripleDEScommand]

08 @ = "PowerShell Get - FileHash - Algorithm MACTripleDES \"%1\" | format - list;“按任意键退出...”;[Console]::Readkey() | Out - Null;exit"

09 [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellMD5]

10 @ = "MD5"

11 [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellMD5command]

12 @ = "PowerShell Get - FileHash - Algorithm MD5 \"%1\" | format - list;“按任意键退出...”;[Console]::Readkey() | Out - Null;exit"

13 [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellRIPEMD160]

14 @ = "RIPEMD160"

15 [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellRIPEMD160command]

16 @ = "PowerShell Get - FileHash - Algorithm RIPEMD160 \"%1\" | format - list;“按任意键退出...”;[Console]::Readkey() | Out - Null;exit"

17 [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA1]

18 @ = "SHA1"

19 [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA1command]

20 @ = "PowerShell Get - FileHash - Algorithm SHA1 \"%1\" | format - list;“按任意键退出...”;[Console]::Readkey() | Out - Null;exit"

21 [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA256]

22 @ = "SHA256"

23 [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA256command]

24 @ = "PowerShell Get - FileHash - Algorithm SHA256 \"%1\" | format - list;“按任意键退出...”;[Console]::Readkey() | Out - Null;exit"

25 [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA384]

26 @ = "SHA384"

27 [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA384command]

28 @ = "PowerShell Get - FileHash - Algorithm SHA384 \"%1\" | format - list;“按任意键退出...”;[Console]::Readkey() | Out - Null;exit"

29 [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA512]

30 @ = "SHA512"

31 [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA512command]

32 @ = "PowerShell Get - FileHash - Algorithm SHA512 \"%1\" | format - list;“按任意键退出...”;[Console]::Readkey() | Out - Null;exit"

复制这些代码:

Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT*shell文件哈希校验] "SubCommands" = "MACTripleDES;MD5;RIPEMD160;SHA1;SHA256;SHA384;SHA512" "MUIVerb" = "文件哈希校验" [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellMACTripleDES] @ = "MACTripleDES" [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellMACTripleDEScommand] @ = "PowerShell Get - FileHash - Algorithm MACTripleDES \"%1\" | format - list;“按任意键退出...”;[Console]::Readkey() | Out - Null;exit" [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellMD5] @ = "MD5" [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellMD5command] @ = "PowerShell Get - FileHash - Algorithm MD5 \"%1\" | format - list;“按任意键退出...”;[Console]::Readkey() | Out - Null;exit" [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellRIPEMD160] @ = "RIPEMD160" [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellRIPEMD160command] @ = "PowerShell Get - FileHash - Algorithm RIPEMD160 \"%1\" | format - list;“按任意键退出...”;[Console]::Readkey() | Out - Null;exit" [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA1] @ = "SHA1" [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA1command] @ = "PowerShell Get - FileHash - Algorithm SHA1 \"%1\" | format - list;“按任意键退出...”;[Console]::Readkey() | Out - Null;exit" [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA256] @ = "SHA256" [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA256command] @ = "PowerShell Get - FileHash - Algorithm SHA256 \"%1\" | format - list;“按任意键退出...”;[Console]::Readkey() | Out - Null;exit" [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA384] @ = "SHA384" [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA384command] @ = "PowerShell Get - FileHash - Algorithm SHA384 \"%1\" | format - list;“按任意键退出...”;[Console]::Readkey() | Out - Null;exit" [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA512] @ = "SHA512" [HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA512command] @ = "PowerShell Get - FileHash - Algorithm SHA512 \"%1\" | format - list;“按任意键退出...”;[Console]::Readkey() | Out - Null;exit"

Win10:将哈希值校验算法添至文件右键层叠菜单的方法