1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

WindowsPE起動時に、ファイル読込の進捗状況をプログレスバーで表示する方法

Posted at

結論

bcd の bootmenupolicy の値が Legacy になっていれば良い。

bcd の内容の確認及び変更方法

Windows PE 起動USBメモリがDドライブになっているとき、

  1. コマンド プロンプトを管理者として起動する。
  2. 次のコマンドを実行する。
    • MBR なら
      bcdedit /store "D:\Boot\BCD"
      
    • UEFI なら
      bcdedit /store "D:\EFI\Microsoft\Boot\BCD"
      
  3. 実行結果をスクロールして、下から4行目の bootmenupolicy の値が Standard、Legacy のどちらになっているか確認する。
  4. bootmenupolicy の値が Standard だったら、次のコマンドを実行する。
    • MBR なら
      bcdedit /store "D:\Boot\BCD" /set {default} bootmenupolicy legacy
      
    • UEFI なら
      bcdedit /store "D:\EFI\Microsoft\Boot\BCD" /set {default} bootmenupolicy legacy
      
  5. 「この操作を正しく終了しました。」と表示される。
  6. 再度 2. を実行して bootmenupolicy の値が Legacy になっていることを確認する。
  7. Windows PE 起動USBメモリから起動して、ファイル読込の進捗状況がプログレスバーで表示されることを確認する。
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?