" async="async"> ', { cookie_domain: 'auto', cookie_flags: 'max-age=0;domain=.tistory.com', cookie_expires: 7 * 24 * 60 * 60 // 7 days, in seconds }); [윈도우 설치 중 드라이브 선택 오류? ‘Windows cannot be installed to this disk’ 해결법]

문제 해결

[윈도우 설치 중 드라이브 선택 오류? ‘Windows cannot be installed to this disk’ 해결법]

ybpc 2025. 5. 25. 13:47

윈도우 설치 중 “Windows cannot be installed to this disk” 오류가 발생했다면, 대부분 MBR/GPT 파티션 형식 불일치가 원인입니다.

🚫 오류 예시

  • “The selected disk has an MBR partition table”
  • “The selected disk is of the GPT partition style”

🛠 해결 방법

  1. UEFI/Legacy BIOS 모드 확인
    • GPT는 UEFI 모드에서만 설치 가능
    • MBR은 Legacy BIOS에서만 설치 가능
  2. 디스크 포맷 및 변환
    • Shift + F10 → 명령 프롬프트 열기
    • 다음 명령어 입력:
    • sql
      복사편집
      diskpart list disk select disk 0 clean convert gpt (또는 convert mbr) exit
    • 이후 다시 설치 시도
  3. 파티션 삭제 후 자동 생성
    설치 시 기존 파티션을 삭제한 뒤, 윈도우 설치에서 자동으로 새 파티션을 생성하도록 합니다.

💡 TIP

  • USB가 GPT 포맷이면 BIOS도 UEFI 모드여야 합니다.
  • Rufus에서 포맷할 때 UEFI (GPT) 혹은 BIOS (MBR)를 일치시켜야 오류가 없습니다.