Aplicando um arquivo de imagem usando o script ImageX dá boot store de dados de configuração não pôde ser aberto erro com o novo PC


1

Eu estou aplicando arquivos de imagem do Windows, arquivos wim, usando o Microsoft ImageX. Isso costumava funcionar bem, mas em uma nova versão do que deveria ser o mesmo PC que agora falha.

O roteiro é assim:

DISKPART /s WipeDisk.txt
D:
ImageX /apply MyImage.wim 1 c:\
bcdedit /set {default} device partition=c:
bcdedit /set {default} osdevice partition=c:
bcdedit /set {bootmgr} device partition=c:

e WipeDisk.txt é assim:

SELECT DISK 0
CLEAN
CREATE PARTITION PRIMARY
FORMAT QUICK FS=NTFS LABEL="Windows"
ACTIVE
ASSIGN LETTER="C"

O erro após aplicar a imagem é:

all the diskpart stuff works fine

[ 100% ] Applying progress

Successfully applied image.

Total elapsed time: 17 min 18 sec

D:\>bcdedit /set {default} device partition=c:
The boot configuration data store could not be opened.
The requested system device cannot be found.
D:\>bcdedit /set {default} osdevice partition=c:
The boot configuration data store could not be opened.
The requested system device cannot be found.
D:\>bcdedit /set {bootmgr} device partition=c:
The boot configuration data store could not be opened.
The requested system device cannot be found.

E se eu tentar inicializar o PC depois de aplicar a imagem eu recebo o erro:

Status: 0xc0000185

Info: The boot selection failed because a required device is inaccessible.

Então eu apertei enter e vi:

File: \EFI\Microsoft\Boot\BCD
Status: 0xc0000185
Info: An error occurred while attempting to read the boot configuration data.

Este é o PC de hardware de destino usado: http://www.axiomtek.com/DownLoad/Spec/got3187w-834-pct.pdf

Existe uma alternativa ao BCDEdit que eu poderia usar? Qualquer maneira de corrigir o disco não inicializar?

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.