initial
commit
a13f6c73f6
@ -0,0 +1,30 @@
|
|||||||
|
# UEFI bootloader Recovery
|
||||||
|
|
||||||
|
## REquirement
|
||||||
|
- Windows 10 ISO boot disk
|
||||||
|
|
||||||
|
## Step
|
||||||
|
- Boot Windows 10 ISO
|
||||||
|
- Select Repair Disk
|
||||||
|
- Select Command Prompt
|
||||||
|
- Use diskpart to assign uefi partition a letter
|
||||||
|
|
||||||
|
```sh
|
||||||
|
X:> diskpart
|
||||||
|
diskpart> list disk
|
||||||
|
diskpart> sel disk 0
|
||||||
|
diskpart> list vol
|
||||||
|
diskpart> sel vol 1
|
||||||
|
diskpart> assign letter=v
|
||||||
|
```
|
||||||
|
- Format EFI partition
|
||||||
|
```sh
|
||||||
|
> format v: /fs:fat32
|
||||||
|
```
|
||||||
|
- Recreate EFI bootloader. Locate the drive letter of windows partition (eg: c:\)
|
||||||
|
```sh
|
||||||
|
> bcdboot c:\windows /s v: /f UEFI
|
||||||
|
Boot files successfully created
|
||||||
|
```
|
||||||
|
|
||||||
|
- Now, the drive should be able to boot
|
||||||
Loading…
Reference in New Issue