Windows 10/Fix boot: Difference between revisions

From Wiki
No edit summary
No edit summary
Line 17: Line 17:


<pre>
<pre>
cd /d v:\EFI\Microsoft\Boot\
cd /d z:\EFI\Microsoft\Boot\
bootrec /fixboot
bootrec /fixboot
ren BCD BCD.bak
ren BCD BCD.bak
bcdboot c:\Windows /l de-de /s z: /f ALL
bcdboot c:\Windows /l de-de /s z: /f ALL
</pre>
</pre>

Revision as of 21:29, 18 March 2017

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