토막 정보
윈도우에서 다운받은 파일 체크섬 확인 방법
장모
2022. 1. 27. 17:26
파워쉘
> Get-FileHash .\Downloads\jetbrains-toolbox-1.22.10970.exe
Algorithm Hash Path
--------- ---- ----
SHA256 4BBF66219B7ACE875C15FC14E86211DA86423C7B2FEECB1347194891FF15E74E C:\Us...
> Get-FileHash .\Downloads\jetbrains-toolbox-1.22.10970.exe -Algorithm MD5
Algorithm Hash Path
--------- ---- ----
MD5 0B9C61C0919918076368499703C09135 C:\Us...
명령 프롬프트(CMD)
> certutil -hashfile Downloads\jetbrains-toolbox-1.22.10970.exe MD5
MD5의 Downloads\jetbrains-toolbox-1.22.10970.exe 해시:
0b9c61c0919918076368499703c09135
CertUtil: -hashfile 명령이 성공적으로 완료되었습니다.
>certutil -hashfile Downloads\jetbrains-toolbox-1.22.10970.exe SHA256
SHA256의 Downloads\jetbrains-toolbox-1.22.10970.exe 해시:
4bbf66219b7ace875c15fc14e86211da86423c7b2feecb1347194891ff15e74e
CertUtil: -hashfile 명령이 성공적으로 완료되었습니다.
간단