Windows 10/Fix boot: Difference between revisions

From Wiki
(Die Seite wurde neu angelegt: „<pre> Bootrec /fixmbr Bootrec /fixboot Bootrec /scanos Bootrec /rebuildbcd </pre>“)
 
mNo edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
Start from win 10 dvd and run in CMD:
<pre>
<pre>
Bootrec /fixmbr
Bootrec /fixmbr
Line 5: Line 6:
Bootrec /rebuildbcd
Bootrec /rebuildbcd
</pre>
</pre>
If "system device not found", run "diskpart"
<pre>
sel disk 0
list vol
sel vol 3 (or whatver number the EFI partition is)
assign letter=z:
exit
</pre>
<pre>
cd /d z:\EFI\Microsoft\Boot\
bootrec /fixboot
ren BCD BCD.bak
bcdboot c:\Windows /l de-de /s z: /f ALL
</pre>
[[Category:Windows 10]]

Latest revision as of 11:35, 18 January 2021

Start from win 10 dvd and run in CMD:

Bootrec /fixmbr
Bootrec /fixboot
Bootrec /scanos
Bootrec /rebuildbcd

If "system device not found", run "diskpart"

sel disk 0
list vol
sel vol 3 (or whatver number the EFI partition is)
assign letter=z:
exit
cd /d z:\EFI\Microsoft\Boot\
bootrec /fixboot
ren BCD BCD.bak
bcdboot c:\Windows /l de-de /s z: /f ALL