Can't boot into Windows 8 PE

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
0
down vote

favorite












I'm running Ubuntu 17.10 on my Dell Latitude E6410 and I'm new to Linux. I needed to boot into Windows to check a battery issue so I searched for a Windows live CD and I found this windows 8 PE (Gandalf's_Win8PE_x86) and I burned it to a USB stick using this method.



The problem is, when I try to boot into Win8 PE from the USB, I get into the GRUB command line instead of the GUI.



Is there something I can type in there that will boot Windows PE? Or is there a way to switch back to the GUI GRUB?










share|improve this question



























    up vote
    0
    down vote

    favorite












    I'm running Ubuntu 17.10 on my Dell Latitude E6410 and I'm new to Linux. I needed to boot into Windows to check a battery issue so I searched for a Windows live CD and I found this windows 8 PE (Gandalf's_Win8PE_x86) and I burned it to a USB stick using this method.



    The problem is, when I try to boot into Win8 PE from the USB, I get into the GRUB command line instead of the GUI.



    Is there something I can type in there that will boot Windows PE? Or is there a way to switch back to the GUI GRUB?










    share|improve this question

























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I'm running Ubuntu 17.10 on my Dell Latitude E6410 and I'm new to Linux. I needed to boot into Windows to check a battery issue so I searched for a Windows live CD and I found this windows 8 PE (Gandalf's_Win8PE_x86) and I burned it to a USB stick using this method.



      The problem is, when I try to boot into Win8 PE from the USB, I get into the GRUB command line instead of the GUI.



      Is there something I can type in there that will boot Windows PE? Or is there a way to switch back to the GUI GRUB?










      share|improve this question















      I'm running Ubuntu 17.10 on my Dell Latitude E6410 and I'm new to Linux. I needed to boot into Windows to check a battery issue so I searched for a Windows live CD and I found this windows 8 PE (Gandalf's_Win8PE_x86) and I burned it to a USB stick using this method.



      The problem is, when I try to boot into Win8 PE from the USB, I get into the GRUB command line instead of the GUI.



      Is there something I can type in there that will boot Windows PE? Or is there a way to switch back to the GUI GRUB?







      boot dual-boot grub2 uefi windows-8






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 21 at 16:04









      Zanna

      48.1k13120228




      48.1k13120228










      asked Mar 7 at 20:05









      Fares

      366




      366




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          3
          down vote



          accepted










          After a lot of searching and tries, I finally came up with a solution!



          This is how to burn Gandalf's Windows PE ISO(s) Using Ubuntu.




          1. Prepare USB using GParted:



            msdos - fat32 / ntfs - check ( boot ) in Partition flag



          2. Install ISO using Unetbootin.



          3. Make it bootable



            sudo grub-install --target=i386-pc --boot-directory="/media/<username>/<drive_label>/boot" /dev/sdX


            Replace:



            /media/<username>/<drive_label> with the path where USB drive is mounted, /dev/sdX with the USB drive, not the partition (e.g. /dev/sdb not /dev/sdb1)




          4. Create a file named grub.cfg in the USB drive in /boot/grub folder:



            Add the following text to the grub.cfg file :-



            default=1 
            timeout=15
            color_normal=light-cyan/dark-gray
            menu_color_normal=black/light-cyan
            menu_color_highlight=white/black

            menuentry "Start Windows Installation"
            insmod ntfs
            insmod search_label
            search --no-floppy --set=root --label <USB_drive_label> --hint hd0,msdos1
            ntldr /bootmgr
            boot


            menuentry "Boot from the first hard drive"
            insmod ntfs
            insmod chain
            insmod part_msdos
            insmod part_gpt
            set root=(hd1)
            chainloader +1
            boot



          And that's it!



          Boot from the USB in legacy boot and you will boot from Windows in live mode without needing to install it.






          share|improve this answer






















            Your Answer







            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "89"
            ;
            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',
            convertImagesToLinks: true,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













             

            draft saved


            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1012849%2fcant-boot-into-windows-8-pe%23new-answer', 'question_page');

            );

            Post as a guest






























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            3
            down vote



            accepted










            After a lot of searching and tries, I finally came up with a solution!



            This is how to burn Gandalf's Windows PE ISO(s) Using Ubuntu.




            1. Prepare USB using GParted:



              msdos - fat32 / ntfs - check ( boot ) in Partition flag



            2. Install ISO using Unetbootin.



            3. Make it bootable



              sudo grub-install --target=i386-pc --boot-directory="/media/<username>/<drive_label>/boot" /dev/sdX


              Replace:



              /media/<username>/<drive_label> with the path where USB drive is mounted, /dev/sdX with the USB drive, not the partition (e.g. /dev/sdb not /dev/sdb1)




            4. Create a file named grub.cfg in the USB drive in /boot/grub folder:



              Add the following text to the grub.cfg file :-



              default=1 
              timeout=15
              color_normal=light-cyan/dark-gray
              menu_color_normal=black/light-cyan
              menu_color_highlight=white/black

              menuentry "Start Windows Installation"
              insmod ntfs
              insmod search_label
              search --no-floppy --set=root --label <USB_drive_label> --hint hd0,msdos1
              ntldr /bootmgr
              boot


              menuentry "Boot from the first hard drive"
              insmod ntfs
              insmod chain
              insmod part_msdos
              insmod part_gpt
              set root=(hd1)
              chainloader +1
              boot



            And that's it!



            Boot from the USB in legacy boot and you will boot from Windows in live mode without needing to install it.






            share|improve this answer


























              up vote
              3
              down vote



              accepted










              After a lot of searching and tries, I finally came up with a solution!



              This is how to burn Gandalf's Windows PE ISO(s) Using Ubuntu.




              1. Prepare USB using GParted:



                msdos - fat32 / ntfs - check ( boot ) in Partition flag



              2. Install ISO using Unetbootin.



              3. Make it bootable



                sudo grub-install --target=i386-pc --boot-directory="/media/<username>/<drive_label>/boot" /dev/sdX


                Replace:



                /media/<username>/<drive_label> with the path where USB drive is mounted, /dev/sdX with the USB drive, not the partition (e.g. /dev/sdb not /dev/sdb1)




              4. Create a file named grub.cfg in the USB drive in /boot/grub folder:



                Add the following text to the grub.cfg file :-



                default=1 
                timeout=15
                color_normal=light-cyan/dark-gray
                menu_color_normal=black/light-cyan
                menu_color_highlight=white/black

                menuentry "Start Windows Installation"
                insmod ntfs
                insmod search_label
                search --no-floppy --set=root --label <USB_drive_label> --hint hd0,msdos1
                ntldr /bootmgr
                boot


                menuentry "Boot from the first hard drive"
                insmod ntfs
                insmod chain
                insmod part_msdos
                insmod part_gpt
                set root=(hd1)
                chainloader +1
                boot



              And that's it!



              Boot from the USB in legacy boot and you will boot from Windows in live mode without needing to install it.






              share|improve this answer
























                up vote
                3
                down vote



                accepted







                up vote
                3
                down vote



                accepted






                After a lot of searching and tries, I finally came up with a solution!



                This is how to burn Gandalf's Windows PE ISO(s) Using Ubuntu.




                1. Prepare USB using GParted:



                  msdos - fat32 / ntfs - check ( boot ) in Partition flag



                2. Install ISO using Unetbootin.



                3. Make it bootable



                  sudo grub-install --target=i386-pc --boot-directory="/media/<username>/<drive_label>/boot" /dev/sdX


                  Replace:



                  /media/<username>/<drive_label> with the path where USB drive is mounted, /dev/sdX with the USB drive, not the partition (e.g. /dev/sdb not /dev/sdb1)




                4. Create a file named grub.cfg in the USB drive in /boot/grub folder:



                  Add the following text to the grub.cfg file :-



                  default=1 
                  timeout=15
                  color_normal=light-cyan/dark-gray
                  menu_color_normal=black/light-cyan
                  menu_color_highlight=white/black

                  menuentry "Start Windows Installation"
                  insmod ntfs
                  insmod search_label
                  search --no-floppy --set=root --label <USB_drive_label> --hint hd0,msdos1
                  ntldr /bootmgr
                  boot


                  menuentry "Boot from the first hard drive"
                  insmod ntfs
                  insmod chain
                  insmod part_msdos
                  insmod part_gpt
                  set root=(hd1)
                  chainloader +1
                  boot



                And that's it!



                Boot from the USB in legacy boot and you will boot from Windows in live mode without needing to install it.






                share|improve this answer














                After a lot of searching and tries, I finally came up with a solution!



                This is how to burn Gandalf's Windows PE ISO(s) Using Ubuntu.




                1. Prepare USB using GParted:



                  msdos - fat32 / ntfs - check ( boot ) in Partition flag



                2. Install ISO using Unetbootin.



                3. Make it bootable



                  sudo grub-install --target=i386-pc --boot-directory="/media/<username>/<drive_label>/boot" /dev/sdX


                  Replace:



                  /media/<username>/<drive_label> with the path where USB drive is mounted, /dev/sdX with the USB drive, not the partition (e.g. /dev/sdb not /dev/sdb1)




                4. Create a file named grub.cfg in the USB drive in /boot/grub folder:



                  Add the following text to the grub.cfg file :-



                  default=1 
                  timeout=15
                  color_normal=light-cyan/dark-gray
                  menu_color_normal=black/light-cyan
                  menu_color_highlight=white/black

                  menuentry "Start Windows Installation"
                  insmod ntfs
                  insmod search_label
                  search --no-floppy --set=root --label <USB_drive_label> --hint hd0,msdos1
                  ntldr /bootmgr
                  boot


                  menuentry "Boot from the first hard drive"
                  insmod ntfs
                  insmod chain
                  insmod part_msdos
                  insmod part_gpt
                  set root=(hd1)
                  chainloader +1
                  boot



                And that's it!



                Boot from the USB in legacy boot and you will boot from Windows in live mode without needing to install it.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Mar 31 at 0:37

























                answered Mar 9 at 12:35









                Fares

                366




                366



























                     

                    draft saved


                    draft discarded















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1012849%2fcant-boot-into-windows-8-pe%23new-answer', 'question_page');

                    );

                    Post as a guest













































































                    Popular posts from this blog

                    pylint3 and pip3 broken

                    Missing snmpget and snmpwalk

                    How to enroll fingerprints to Ubuntu 17.10 with VFS491