0xc0000225 Erro na instalação do Windows para GPT (UEFI)

1

Estou tentando instalar o Arch linux e dual boot com o windows. Como estou executando um sistema UEFI moderno, coloquei meu SSD (consulte Especificações abaixo) no formato GPT (perdendo a instalação original do Windows no processo) onde planejo instalar o carregador de inicialização UEFI, Windows e Arch. No momento estou tentando reinstalar o Windows 7 (Professional x64), para que eu possa fazer uma inicialização UEFI. Quando uso o Rufus para criar uma unidade USB inicializável da GPT, recebo o erro de inicialização 0xc0000225. Quando tento fazer isso manualmente com essas instruções ( link ), meu computador não reconhece meus flash drive como inicializável (ele fornece o erro de mídia de inicialização da própria inserção). Eu estou usando este ( link ) para o ISO, eu também tenho um disco de instalação antigo. Inicializar o ISO sem modificação no Legacy BIOS funciona muito bem, mas não tenho como instalar janelas em uma unidade GPT durante a inicialização no BIOS legado (o Windows não pode ser instalado em uma unidade GPT, provavelmente porque detecta que o sistema está executando legacy bios em vez de UEFI). Como posso instalar o Windows 7 no GPT?

Especificações: CPU: i5-4670k Placa-mãe: Z87x-D3H Gigabyte SSD: OCZ Vertex 3 (definido no modo GPT) HDD: Western Digital Caviar Blue Flash Drive: 8GB JetFlash Transcend USB 3.0

    
por Flayneorange 30.05.2014 / 21:50

2 respostas

0

Defina Rufus como MBR para UEFI com o sistema de arquivos FAT32 para fazer com que ele particione a unidade flash como uma unidade MBR com uma única partição FAT32 que contenha os arquivos de inicialização UEFI do Windows. Além disso, você pode querer desconectar todas as outras unidades. Eu estava tendo um problema onde meu HDD que continha uma cópia da minha antiga partição de instalação SSD estava sendo reconhecido como uma unidade de inicialização válida. Isso estava causando o erro 0xc0000225 (além da unidade flash sendo particionada com a tabela de partição GUID.

    
por 02.06.2014 / 06:48
2

De Resolvendo o temido erro do Windows 8 0xC0000225 :

I've had this happen to me twice, all of a sudden Windows 8 refuses to boot and gives an error code of 0xC0000225 (or something) and anything you do won't fix it. The problem is that since for whatever reason Windows thinks there's no bootloader, it refuses to boot. Period. You can't even go into the recovery environment, which is my biggest complaint at Microsoft.

In any case, there's one way I've found to resolve this. If you have access to another computer, take out the affected computer's primary drive and find a way to mount it in the system (internally, externally, whatever). Then do the following:

  • Open command prompt as an administrator
  • Type in "diskpart"
  • Type in "list disk". Find out which disk the affected drive is.
  • Type in "select disk #", where # is the affected drive's number
  • Type in "list partition", find the partition number of the system partition (it's usually 100MB, 200MB, or 300MB), then type in "select partition #", where # is the system partition's number.
  • Type in "assign letter=z", assuming you don't have a Z: drive.
  • Exit out of diskpart by pressing CTRL+C
  • Type in BCDBoot [Drive letter of affected drive's Windows partition]:\Windows /S Z: /F UEFI So if the affected drive's Windows partition is say G:\, you would type in BCDBoot G:\Windows /S Z: /F UEFI

It should fix the bootloader. If you can get into a recovery environment on the affected computer, then this should work as well.

    
por 01.06.2014 / 05:31