スタートアップ修復を起動しないようにWindows 7に指示する方法


13

Windows 7(64ビット)の仮想マシンがあり、主にリモートデスクトップを使用しています。起動時に何かがおかしくなり、次のDOS画面が表示される場合があります。

                             Windows Error Recovery
Windows Failed to start. A recent hardware of software change might be the cause.

If Windows files have been damaged or configured incorrectly, Startup Repair can help diagnose and fix the problem. If power was interrupted during startup, choose Start Windows Normally.
(Use the arrow keys to highlight your choice.)

 * Launch Startup Repair (recommended)
 * Start Windows Normally

デフォルトのオプションはLaunch Startup Repair(30秒後に自動的に行われます)です。これが決して起こらないように設定するにはどうすればよいStart Windows Normallyですか?


回答:


21

次のコマンドを実行します。

bcdedit / set {current} bootstatuspolicy ignoreallfailures

似ている

bcdedit / set {default} bootstatuspolicy ignoreallfailures

デフォルトのロードで起動した場合は同じになる可能性があるため、デフォルトは電流に等しくなります。

詳細については、関連するGoogle検索は「Windowsエラー回復を無効にする」です(引用符を除く)。


8

より良い解決策は、BCDeditに次の行を実装することです。

bcdedit /set {default} bootstatuspolicy ignoreshutdownfailures 

この方法では、シャットダウンの失敗のみが無視され、システムは回復モードになりません。マシンが正常に起動せず、他のエラーが発生した場合でも、リカバリモードは引き続き使用可能です。


4

コマンドプロンプトで次を入力します。

bcdedit /set {default} recoveryenabled No

これにより、問題がある場合にスタートアップ修復が自動的に起動するのを無効にします。

ただし、注意してください:

再度有効にするには、管理者としてWindowsに戻る必要があります。上記のコマンドで[いいえ]を[はい]に変更するだけです

このSevenForums.comスレッドの「busterh」の功績

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.