Skip to content

Commit 73c22ca

Browse files
authored
Fix Windows boot recovery instructions (#362)
The BCD path was not correctly specified. Also write the full Diskpart command instead of abbreviating. Signed-off-by: Tu Dinh <ngoc-tu.dinh@vates.tech>
1 parent cb00f16 commit 73c22ca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/troubleshooting/windows-pv-tools.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,17 +136,17 @@ This is often caused by the Windows boot loader failing to find the Windows part
136136
From the recovery menu, open Command Prompt, then use `diskpart` to assign drive letters to the EFI system partition:
137137

138138
```
139-
list vol
140-
sel vol N # N = number of volume with info = "System"
139+
list volume
140+
select volume N # N = number of volume with info = "System"
141141
assign letter=S
142142
exit
143143
```
144144

145145
After exiting Diskpart, use the following commands:
146146

147147
```bat
148-
bcdedit /store S:\EFI\Microsoft\Boot /set {default} device=partition=C:
149-
bcdedit /store S:\EFI\Microsoft\Boot /set {default} osdevice=partition=C:
148+
bcdedit /store S:\EFI\Microsoft\Boot\BCD /set {default} device=partition=C:
149+
bcdedit /store S:\EFI\Microsoft\Boot\BCD /set {default} osdevice=partition=C:
150150
```
151151

152152
After exiting to Windows, your system should boot successfully.

0 commit comments

Comments
 (0)