Troubleshoot Windows default boot option failure
Fix an ECS Windows instance that fails to start because the default boot option is misconfigured.
Problem description
The default Windows boot option on an ECS instance fails to start. Selecting another boot option starts the instance normally.
Cause
The default boot option is corrupted or misconfigured, preventing the operating system from starting.
Solution
-
Connect to the instance with VNC.
-
Select a working boot option from the boot menu.

-
Run Windows PowerShell or cmd as an administrator.
-
View the identifiers of all boot options:
bcdedit /enum allThe identifier strings in the output are the boot option identifiers.

-
Set a working boot option as the default.
Use one of the following methods:
NoteReplace
d7b2481f-65a5-11ee-82d5-************with a working boot option identifier from Step 4.-
Windows PowerShell:
bcdedit.exe /default "{d7b2481f-65a5-11ee-82d5-************}" -
cmd:
bcdedit /default {d7b2481f-65a5-11ee-82d5-************}
-
-
Restart the instance for the changes to take effect.
See Restart an instance.
-
Connect to the ECS instance. If the connection succeeds, the issue is resolved.