web-dev-qa-db-ja.com

Windows 8が起動しない、BCDエラー

Windows 8ラップトップに起動の問題があります。 Windowsが起動しようとすると、次のエラーメッセージが表示されます。

Boot configuration data is missing  
File: \BCD  
Error code: 0xc0000034  

だから提案されたように私はコンソールを起動して試してみました:

bootrec /fixmbr
bootrec /fixboot
bootrec /scanos
bootrec /rebuildbcd

最後のコマンドの後、私は得ました:

Total identified win installations:1
[1] C:\Windows 
Add installation to boot list? 

私はyと入力したので、インストールを追加したいのですが、返信がありました:

The requested system device cannot be found. 

解決策として、diskpartを見つけました-OSパーティションを選択してアクティブにするため、OSパーティションを選択して次のように入力しました。

active

私はその返事を得ました:

The selected disk is not a fixed MBR disk. 
The active command can only be used on fixed MBR disks. 

この問題を修正して、Windows 8を正しく起動するにはどうすればよいですか?私のラップトップは、以前機能していたPCの修理です。

6
martin

(解決策が見つからない後)コンピューターを更新しようとすると、次のようなエラーメッセージが表示されます。

PC can't be refreshed, because your disk is locked.

それで、私は このチュートリアルは言う としてHDDのロックを解除することにしましたが、Windows 8インストールディスクを使用しました。

私は数秒後にエラーをインストールすることを選択します:

Bad serial number ...

[OK]ボタンをクリックしてこのウィンドウを送信しました。提出した後、私は選択します

Turn off computer

windowsインストールメニュー。すべてをオフにして電源を入れた後、すべてがうまく機能していた後、他の手順は必要ありません

1
martin

このページは、BIOSをアップグレードした後、UEFI ASRock X79 Extreme 9のWindows 7用Intel RSTe Raid SSD構成でBCDを復元するのに役立ちました。

diskpart
list disk
select disk 0 #Select the desired disk
create partition efi size=100
list partition #Make sure that the 100mb partition is selected
format quick fs=fat32 label="System"
assign letter=B
create partition msr size=128
list partition #Check for errors
list vol
select vol 3 #Use the number corresponding to your windows installation
assign letter=C
exit

次のように入力して、EFIファイルをコピーします。

mkdir B:\EFI\Microsoft\Boot
xcopy /s C:\Windows\Boot\EFI\*.* B:\EFI\Microsoft\Boot

次のように入力して、ブート構成データを設定します。

b:
cd EFI\Microsoft\Boot
bcdedit /createstore BCD
bcdedit /store BCD  /create {bootmgr} /d “Windows Boot Manager”
bcdedit /store BCD /create /d “Windows 7” /application osloader
#This will return a GUID, referred to later as {guid}
bcdedit /store BCD /set {bootmgr} default {guid}
bcdedit /store BCD /set {bootmgr} path \EFI\Microsoft\Boot\bootmgfw.efi
bcdedit /store BCD /set {bootmgr} displayorder {default}
#Now it's not {bootmgr} anymore but {default}!
bcdedit /store BCD /set {default} device partition=c:
bcdedit /store BCD /set {default} osdevice partition=c:
bcdedit /store BCD /set {default} path \Windows\System32\winload.efi
bcdedit /store BCD /set {default} systemroot \Windows
exit

クレジット: http://www.hasper.info/repair-a-destroyed-windows-7-uefi-boot-sector/

5
Kinetic

これは本日2回目の前に起こりました。hardware can't be foundエラーだけbootrecを使用しているので、使用した手順を説明します。

インストールメディアディスクのリカバリターミナルに次のコマンドを入力します。最初のセットは、マスターブートレコード(MBR)とブートセクターを修正します。

bootrec.exe /fixmbr
bootsect.exe /nt60 all /force

その後、ブート構成データ(BCD)を再構築しようとしました

bootrec.exe /rebuildbcd

これで解決しましたが、さらに手順が必要な場合は、私が使用した情報(およびそれ以上)が this Webサイトにあります。

3
Harvey

これを試して:

1.インストールディスクを挿入します

2.Windowsを修復するために行きます

3.コマンドプロンプト

4.これに入力:

「BootRec.exe/rebuildbcd」と入力してEnterキーを押し、次に「BootRec.exe/fixmbr」と入力してEnterキーを押し、最後に「BootRec.exe/fixboot」と入力してEnterキーを押します。 PCを再起動して、試してください。

0
h313