起動エラーを自動修復する Quick Machine Recovery (QMR)

「診断データをMicrosoftに送信する」とあるけど、どのレベルまで診断データとしているのか不明なので不信感は拭えない。
送信内容を事前に確認できるならいいけど、たぶんMSはそんなことはしないだろう。
さらに、「問題の修復に適したプログラムが「Windows Update」経由でPCに送信される」とあるけど、不具合の温床の元である「Windows Update」経由 となると、とても怖くて利用する気にはなれない。
どのくらいの時間で修復できるのかは分からないけど、勝手にデータ収集されてリスク満載のWindows Updateを利用するぐらいなら、クリーンインストールした方がよっぽど速くて安全だと思う。
このブログを読んでいる多くの方達は Windows Update は削除、または無効にしているとは思うけど。
- = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = -
ちなみに、Windows 11 システム要件のチェックを無効にするでは REはboot.wimへ含めていません。
必要ないとは思うけど、REを含めたい人は以下のコマンドを追加してください。
DISM /Export-Image /SourceImageFile:F:\win11\ISO\sources\boot.wim /SourceIndex:1 /DestinationImageFile:F:\win11\ISO\sources\boot2.wim /Compress:max
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
boot.wimの編集コマンド全体
DISM /Mount-Wim /WimFile:F:\win11\ISO\sources\boot.wim /index:2 /MountDir:F:\win11\mount
DISM /unmount-WIM /MountDir:F:\win11\mount /Commit
DISM /Export-Image /SourceImageFile:F:\win11\ISO\sources\boot.wim /SourceIndex:1 /DestinationImageFile:F:\win11\ISO\sources\boot2.wim /Compress:max
DISM /Export-Image /SourceImageFile:F:\win11\ISO\sources\boot.wim /SourceIndex:2 /DestinationImageFile:F:\win11\ISO\sources\boot2.wim /Compress:max
DEL /S /F /Q F:\win11\ISO\sources\boot.wim
REN F:\win11\ISO\sources\boot2.wim boot.wim
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
パスは環境に合わせて編集してください。