2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

右クリックからハッシュ値(MD5)を取得してクリップボードに入れる

Posted at
  • md5.regというファイルを作り、中身を下記にして保存。
  • Windows7の場合

    Windows Registry Editor Version 5.00
    
    [HKEY_CLASSES_ROOT\*\shell\MD5]
    @="MD&5を取得"
    
    [HKEY_CLASSES_ROOT\*\shell\MD5\command]
    @="cmd /c md5sum \"%1\" |clip"
    
  • Windows10の場合

    Windows Registry Editor Version 5.00
    
    [HKEY_CLASSES_ROOT\*\shell\MD5]
    @="MD&5を取得"
    
    [HKEY_CLASSES_ROOT\*\shell\MD5\command]
    @="cmd /c certutil -hashfile \"%1\" MD5|findstr -v \":\"|clip"
    
  • md5.regを実行。
    なんか警告でるけど恐れずOK押下。

  • コンテキストメニューに出てくるようになる。

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?