首頁 > 軟體

Win10怎麼把所有雜湊值校驗演算法新增到檔案右鍵層疊選單中?

2020-07-23 10:28:40

  Win10怎麼把所有雜湊值校驗演算法新增到檔案右鍵層疊選單中?此前小編給大家介紹了《Win10如何在檔案右鍵選單中新增雜湊值校驗選項?》,然而很多用戶反饋能否將所有雜湊值校驗演算法新增到檔案右鍵選單中,最好是層疊選單。辦法當然是有啦,同樣需要製作一個登錄檔檔案新增到登錄檔中,下面我們來看看具體的操作方法。

  Win10怎麼把所有雜湊值校驗演算法新增到檔案右鍵層疊選單中?

  1、把下面的內容複製到記事本中:

  1. 01Windows Registry Editor Version 5.00
  2. 02[HKEY_CLASSES_ROOT*shell檔案雜湊校驗]
  3. 03"SubCommands"="MACTripleDES;MD5;RIPEMD160;SHA1;SHA256;SHA384;SHA512"
  4. 04"MUIVerb"="檔案雜湊校驗"
  5. 05[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellMACTripleDES]
  6. 06@="MACTripleDES"
  7. 07[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellMACTripleDEScommand]
  8. 08@="PowerShell Get-FileHash -Algorithm MACTripleDES "%1" | format-list;“按任意鍵退出...”;[Console]::Readkey() | Out-Null;exit"
  9. 09[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellMD5]
  10. 10@="MD5"
  11. 11[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellMD5command]
  12. 12@="PowerShell Get-FileHash -Algorithm MD5 "%1" | format-list;“按任意鍵退出...”;[Console]::Readkey() | Out-Null;exit"
  13. 13[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellRIPEMD160]
  14. 14@="RIPEMD160"
  15. 15[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellRIPEMD160command]
  16. 16@="PowerShell Get-FileHash -Algorithm RIPEMD160 "%1" | format-list;“按任意鍵退出...”;[Console]::Readkey() | Out-Null;exit"
  17. 17[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA1]
  18. 18@="SHA1"
  19. 19[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA1command]
  20. 20@="PowerShell Get-FileHash -Algorithm SHA1 "%1" | format-list;“按任意鍵退出...”;[Console]::Readkey() | Out-Null;exit"
  21. 21[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA256]
  22. 22@="SHA256"
  23. 23[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA256command]
  24. 24@="PowerShell Get-FileHash -Algorithm SHA256 "%1" | format-list;“按任意鍵退出...”;[Console]::Readkey() | Out-Null;exit"
  25. 25[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA384]
  26. 26@="SHA384"
  27. 27[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA384command]
  28. 28@="PowerShell Get-FileHash -Algorithm SHA384 "%1" | format-list;“按任意鍵退出...”;[Console]::Readkey() | Out-Null;exit"
  29. 29[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA512]
  30. 30@="SHA512"
  31. 31[HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerCommandStoreshellSHA512command]
  32. 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"

IT145.com E-mail:sddin#qq.com