System Center Virtual Machine Manager
A family of System Center products that enable enterprise-wide management of virtual machines.
402 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
I have set up multiple bootable PE entries. How can I delete one of them?
You can use the "BCDEDIT" command in Windows. BCDEDIT is a command-line tool that manages the boot configuration data (BCD) store, which includes information about boot options and operating systems on your computer.
Use the following command to list all the boot entries in the BCD store:
bcdedit
Look for the entry corresponding to the bootable PE environment you want to remove. Note the "identifier" for that entry.
bcdedit /delete {Identifier}
Replace {Identifier}
with the actual identifier of the entry you want to delete.