[Help] How to use DISM to remove unnecessary bootable PE entries

msi-school 200 Reputation points
2023-08-26T16:35:33.2466667+00:00

Hello,

I have set up multiple bootable PE entries. How can I delete one of them?

System Center Virtual Machine Manager
0 comments No comments
{count} votes

Accepted answer
  1. Katherine788 215 Reputation points
    2023-08-26T16:54:34.57+00:00

    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.

    0 comments No comments

0 additional answers

Sort by: Most helpful