BOOTMGR está faltando - Pressione Ctrl + Alt + Del para reiniciar

0

Eu tenho um disco de inicialização USB do Windows 7 que estou usando para gravar imagens wim em um PC padrão da Intel - um novo PC.

O arquivo em lote applyimage.bat executa os seguintes comandos:

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

e o arquivo de texto WipeDisk.txt contém:

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

Quando executo o arquivo em lote, recebo esta saída:

E:\>applyimage.bat

E:\>DISKPART /s WipeDisk.txt

Microsoft DiskPart version 6.1.7600
Copyright (C) 1999-2008 Microsoft Corporation.
On computer: MININT-135E5ES

Disk 0 is now the selected disk.

DiskPart succeeded in cleaning the disk.

DiskPart succeeded in creating the specified partition.

  100 percent completed

DiskPart successfully formatted the volume.

DiskPart marked the current partition as active.

DiskPart successfully assigned the drive letter or mount point.

E:\>ImageX /apply imagefile.wim 1 c:\

ImageX Tool for Windows
Copyright (C) Microsoft Corp. All rights reserved.
Version: 6.1.7600.16385


[ 100% ] Applying progress

Successfully applied image.

Total elapsed time: 8 min 22 sec




E:\>bcdedit /set {default} device partition=c:
The boot configuration data store could not be opened.
The system cannot find the file specified.

E:\>bcdedit /set {default} osdevice partition=c:
The boot configuration data store could not be opened.
The system cannot find the file specified.

E:\>bcdedit /set {bootmgr} device partition=c:
The boot configuration data store could not be opened.
The system cannot find the file specified.

E:\>

Quando eu reinicio o computador, recebo este erro:

BOOTMGR is missing
Press Ctrl+Alt+Del to restart

Como posso corrigir isso?

E como corrijo o erro inicial no arquivo applyimage.bat?

ATUALIZAÇÃO: Se eu remover as 3 linhas do bcdedit e substituir por:

bcdboot C:\Windows

parece funcionar.

Estou preocupado com o fato de não entender as implicações de fazer essa mudança. E por que de repente preciso disso para um novo PC - que é apenas uma atualização do antigo.

As linhas de bcdedit funcionaram em um Advantech UNO-2184G (provavelmente de 4 a 5 anos), mas não no novo Advantech UNO-2484G.

    
por user619818 22.02.2018 / 13:24

0 respostas