Dear Manerr
Thank you for posting in the Microsoft community.
Typically, if you have created multiple instances of WINDOWS bootstrapping
You can press WIN+i to go to Settings - System - About.
Advanced System Settings on the right.
On the Advanced tab-Booting and Failure Recovery-Setup-
It allows you to set the default operating system, check the time to display the list of operating systems for 30 seconds.
In addition you can create multiple WINDOWS boot with the following scheme.
To create a dual boot menu at boot time to choose between 32-bit and 64-bit Windows 10, you can do so by configuring Windows Boot Manager. Here are the detailed steps:
- Determine the installation location
Make sure you know the installation drive for both operating systems. For example:
- 32-bit Windows 10 is installed on the D: drive.
- 64-bit Windows 10 is installed in the C: drive.
- Use BCDEdit to create startup entries
Open Command Prompt (CMD) and run as administrator:
Press Win + X and select “Command Prompt (Administrator)” or “Windows PowerShell (Administrator)”.
View the current startup items:
bcdedit
Take note of the startup entries that already exist. This information will help you better manage the startup menu.
- Add a new startup item for 32-bit Windows:
Use the following command. we assume that the path to 32-bit Windows is D:\Windows. please adjust the command to your specific path:
bcdedit /copy {current} /d “Windows 10 32-bit”
After running this command, you will get a new GUID (something like {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxxxx}), make a note of this new GUID as it will be used later.
- Set the device and path of the new startup item:
Assuming the new GUID is {new-guid}, you need to execute the following command:
bcdedit /set {new-guid} device partition=D.
bcdedit /set {new-guid} osdevice partition=D.
bcdedit /set {new-guid} path \Windows\System32\winload.exe
Make sure the startup items are in the correct order:
You can set the default startup items and timeout settings, for example:
bcdedit /default {current} # Set the default boot entry to 64-bit.
bcdedit /timeout 30 # Set the timeout to 30 seconds.
- Reboot and test
Reboot your computer and a startup menu with Windows 10 32-bit and 64-bit options should appear.
TIPS:
1. Backup data: Before making changes to your system settings, it is recommended that you back up your important data in case something happens.
2. System Recovery: Make sure you have a way to be able to recover your system, such as creating a Windows installation media or recovery drive.
Best Wish
Shawn.Z-MSFT | Microsoft Community Support Specialist