How to change BCD internal drive letter assignmentChange default drive letter assignmentAdd/Change Drive...

How much RAM could one put in a typical 80386 setup?

Operational amplifier as comparator at high frequency

Is it possible to run Internet Explorer on OS X El Capitan?

What would happen to a modern skyscraper if it rains micro blackholes?

How do I deal with an unproductive colleague in a small company?

Mutually beneficial digestive system symbiotes

What does it mean to describe someone as a butt steak?

Did Shadowfax go to Valinor?

Client team has low performances and low technical skills: we always fix their work and now they stop collaborate with us. How to solve?

Roll the carpet

Can I make popcorn with any corn?

Was any UN Security Council vote triple-vetoed?

Has there ever been an airliner design involving reducing generator load by installing solar panels?

dbcc cleantable batch size explanation

Question relative to pads for capacitors - high frequency

I'm flying to France today and my passport expires in less than 2 months

Filter any system log file by date or date range

What does the "remote control" for a QF-4 look like?

Are astronomers waiting to see something in an image from a gravitational lens that they've already seen in an adjacent image?

What's that red-plus icon near a text?

Why am I being followed by a political opponent in Twitter?

Get value of a counter

expand `ifthenelse` immediately

Uncaught TypeError: 'set' on proxy: trap returned falsish for property Name



How to change BCD internal drive letter assignment


Change default drive letter assignmentAdd/Change Drive Letter Causes BSODWindows 7 Installation Drive Letter AssignmentHow to use BCDEdit to dual boot Windows installations?Drive letter disappeared on triple-boot installLooking for a comprehensive/“expert” guide to BCD parametersIssue with a Windows 7 Boot issue - involving the BCD perhapsTroubleshooting error 0xc000000e on Windows boot with Bitlocker full drive encryptionList every DeviceHarddiskvolume.?Fix invalid link targets after changing drive letter of 'Program Files' folder






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







1















As you know, the following values can be changed by using BCDEDIT:



device partition=E:

osdevice partition=E:



But question is that how did BCD name a certain volume (e.g. E: above) and how can it be corrected? Depending on windows installation method, this drive letter can differ for the same partition. Then, is there a document for BCD explaining about this?










share|improve this question





























    1















    As you know, the following values can be changed by using BCDEDIT:



    device partition=E:

    osdevice partition=E:



    But question is that how did BCD name a certain volume (e.g. E: above) and how can it be corrected? Depending on windows installation method, this drive letter can differ for the same partition. Then, is there a document for BCD explaining about this?










    share|improve this question

























      1












      1








      1








      As you know, the following values can be changed by using BCDEDIT:



      device partition=E:

      osdevice partition=E:



      But question is that how did BCD name a certain volume (e.g. E: above) and how can it be corrected? Depending on windows installation method, this drive letter can differ for the same partition. Then, is there a document for BCD explaining about this?










      share|improve this question














      As you know, the following values can be changed by using BCDEDIT:



      device partition=E:

      osdevice partition=E:



      But question is that how did BCD name a certain volume (e.g. E: above) and how can it be corrected? Depending on windows installation method, this drive letter can differ for the same partition. Then, is there a document for BCD explaining about this?







      drive-letter bcd






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Apr 11 '17 at 22:18









      Bahram AlinezhadBahram Alinezhad

      4317




      4317






















          1 Answer
          1






          active

          oldest

          votes


















          0














          The easiest way would be to open a command prompt, either in Automatic Repair, or in WinPE. Assign drive letters to the System partition (e.g. D:) and to the OS/Windows partition assign the letter (C:). Then used BOOTREC to rebuild the BCD store.




          • DISKPART

          • lis dis (identify OS harddrive)

          • sel dis 0 lis par (identify above System and OS partitions)

          • sel par 1 (e.g. System)

          • assign letter=D

          • sel par 3 (e.g. OS/Windows)

          • assign letter=C

          • exit


          then




          • BOOTREC /FIXBOOT (should say "Successful")

          • BOOTREC /REBUILDBCD (Should find C:WINDOWS - choose Y option to add to the boot store)


          Reboot the system and hopefully it should start.






          share|improve this answer
























          • Thank you very very much, the above answer solved the problem! Although "BOOTREC /FIXBOOT" isn't required for this problem.

            – Bahram Alinezhad
            Feb 3 '18 at 21:00














          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "3"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1198805%2fhow-to-change-bcd-internal-drive-letter-assignment%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          The easiest way would be to open a command prompt, either in Automatic Repair, or in WinPE. Assign drive letters to the System partition (e.g. D:) and to the OS/Windows partition assign the letter (C:). Then used BOOTREC to rebuild the BCD store.




          • DISKPART

          • lis dis (identify OS harddrive)

          • sel dis 0 lis par (identify above System and OS partitions)

          • sel par 1 (e.g. System)

          • assign letter=D

          • sel par 3 (e.g. OS/Windows)

          • assign letter=C

          • exit


          then




          • BOOTREC /FIXBOOT (should say "Successful")

          • BOOTREC /REBUILDBCD (Should find C:WINDOWS - choose Y option to add to the boot store)


          Reboot the system and hopefully it should start.






          share|improve this answer
























          • Thank you very very much, the above answer solved the problem! Although "BOOTREC /FIXBOOT" isn't required for this problem.

            – Bahram Alinezhad
            Feb 3 '18 at 21:00


















          0














          The easiest way would be to open a command prompt, either in Automatic Repair, or in WinPE. Assign drive letters to the System partition (e.g. D:) and to the OS/Windows partition assign the letter (C:). Then used BOOTREC to rebuild the BCD store.




          • DISKPART

          • lis dis (identify OS harddrive)

          • sel dis 0 lis par (identify above System and OS partitions)

          • sel par 1 (e.g. System)

          • assign letter=D

          • sel par 3 (e.g. OS/Windows)

          • assign letter=C

          • exit


          then




          • BOOTREC /FIXBOOT (should say "Successful")

          • BOOTREC /REBUILDBCD (Should find C:WINDOWS - choose Y option to add to the boot store)


          Reboot the system and hopefully it should start.






          share|improve this answer
























          • Thank you very very much, the above answer solved the problem! Although "BOOTREC /FIXBOOT" isn't required for this problem.

            – Bahram Alinezhad
            Feb 3 '18 at 21:00
















          0












          0








          0







          The easiest way would be to open a command prompt, either in Automatic Repair, or in WinPE. Assign drive letters to the System partition (e.g. D:) and to the OS/Windows partition assign the letter (C:). Then used BOOTREC to rebuild the BCD store.




          • DISKPART

          • lis dis (identify OS harddrive)

          • sel dis 0 lis par (identify above System and OS partitions)

          • sel par 1 (e.g. System)

          • assign letter=D

          • sel par 3 (e.g. OS/Windows)

          • assign letter=C

          • exit


          then




          • BOOTREC /FIXBOOT (should say "Successful")

          • BOOTREC /REBUILDBCD (Should find C:WINDOWS - choose Y option to add to the boot store)


          Reboot the system and hopefully it should start.






          share|improve this answer













          The easiest way would be to open a command prompt, either in Automatic Repair, or in WinPE. Assign drive letters to the System partition (e.g. D:) and to the OS/Windows partition assign the letter (C:). Then used BOOTREC to rebuild the BCD store.




          • DISKPART

          • lis dis (identify OS harddrive)

          • sel dis 0 lis par (identify above System and OS partitions)

          • sel par 1 (e.g. System)

          • assign letter=D

          • sel par 3 (e.g. OS/Windows)

          • assign letter=C

          • exit


          then




          • BOOTREC /FIXBOOT (should say "Successful")

          • BOOTREC /REBUILDBCD (Should find C:WINDOWS - choose Y option to add to the boot store)


          Reboot the system and hopefully it should start.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 9 '17 at 15:07









          traxxiontraxxion

          16




          16













          • Thank you very very much, the above answer solved the problem! Although "BOOTREC /FIXBOOT" isn't required for this problem.

            – Bahram Alinezhad
            Feb 3 '18 at 21:00





















          • Thank you very very much, the above answer solved the problem! Although "BOOTREC /FIXBOOT" isn't required for this problem.

            – Bahram Alinezhad
            Feb 3 '18 at 21:00



















          Thank you very very much, the above answer solved the problem! Although "BOOTREC /FIXBOOT" isn't required for this problem.

          – Bahram Alinezhad
          Feb 3 '18 at 21:00







          Thank you very very much, the above answer solved the problem! Although "BOOTREC /FIXBOOT" isn't required for this problem.

          – Bahram Alinezhad
          Feb 3 '18 at 21:00




















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Super User!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1198805%2fhow-to-change-bcd-internal-drive-letter-assignment%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Cannot install PyQt5 The Next CEO of Stack OverflowCannot install tcpreplay 3.4.4cannot...

          Kapp-Putsch Acontecimentos | Outros artigos | Menu de navegação

          Why did early computer designers eschew integers? The Next CEO of Stack OverflowWhat register...