본문 바로가기
운영체제/Windows

Windows ] 윈도우에서 파일 Hex dump 하는 방법

by eteo 2023. 5. 14.

 

 

 

파워쉘을 열고 아래 명령어 뒤에 hex dump할 파일 경로를 입력하면 된다.

 

format-hex

 

 

 

 

 

 

 

 

Format-Hex C:\Users\Username\Documents\example.bin

Format-Hex 명령어는 내부적으로 아래의 과정으로 처리된다.

Get-Content -Path [파일 경로] -Encoding Byte | Format-Hex