Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      Sunshine And March Vibes (2025 Wallpapers Edition)

      May 31, 2025

      The Case For Minimal WordPress Setups: A Contrarian View On Theme Frameworks

      May 31, 2025

      How To Fix Largest Contentful Paint Issues With Subpart Analysis

      May 31, 2025

      How To Prevent WordPress SQL Injection Attacks

      May 31, 2025

      Windows 11 version 25H2: Everything you need to know about Microsoft’s next OS release

      May 31, 2025

      Elden Ring Nightreign already has a duos Seamless Co-op mod from the creator of the beloved original, and it’ll be “expanded on in the future”

      May 31, 2025

      I love Elden Ring Nightreign’s weirdest boss — he bargains with you, heals you, and throws tantrums if you ruin his meditation

      May 31, 2025

      How to install SteamOS on ROG Ally and Legion Go Windows gaming handhelds

      May 31, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      Oracle Fusion new Product Management Landing Page and AI (25B)

      May 31, 2025
      Recent

      Oracle Fusion new Product Management Landing Page and AI (25B)

      May 31, 2025

      Filament Is Now Running Natively on Mobile

      May 31, 2025

      How Remix is shaking things up

      May 30, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      Windows 11 version 25H2: Everything you need to know about Microsoft’s next OS release

      May 31, 2025
      Recent

      Windows 11 version 25H2: Everything you need to know about Microsoft’s next OS release

      May 31, 2025

      Elden Ring Nightreign already has a duos Seamless Co-op mod from the creator of the beloved original, and it’ll be “expanded on in the future”

      May 31, 2025

      I love Elden Ring Nightreign’s weirdest boss — he bargains with you, heals you, and throws tantrums if you ruin his meditation

      May 31, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Operating Systems»Linux»Missing Windows from Grub After Dual Boot? Here’s What You Can Do

    Missing Windows from Grub After Dual Boot? Here’s What You Can Do

    February 5, 2025

    Missing Windows from Grub After Dual Boot? Here's What You Can Do

    One of the issues I encountered after dual booting Windows with Linux is the missing Windows entry from the grub menu.

    Here’s the scenario. Windows was present on the computer. I installed CachyOS alongside Windows. I selected to install the Grub bootloader that allows booting into Linux, Windows (and any other OS present on the system) along with the option to access UEFI.

    Only this time, Grub did not show Windows in the menu 😔

    Missing Windows from Grub After Dual Boot? Here's What You Can Do
    Missing Windows from Grub bootloader

    That was disappointing but not surprising because I am aware that this is a feature.

    Let me show you how you can fix this by enabling os-prober feature in Grub and then updating it.

    Step 1: Enable os-prober in grub

    Grub config file is located at /etc/default/grub. If you open it via Nano or some editor, you’ll see at the end of this file that os-prober is disabled by default sighting security reasons.

    Missing Windows from Grub After Dual Boot? Here's What You Can Do

    If you are familiar with any terminal-based text editor, use it to uncomment the line # GRUB_DISABLE_OS_PROBER=false by removing the # at the beginning of the line.

    However, if you are absolutely new to the command line, you can use this command in the terminal:

    echo "GRUB_DISABLE_OS_PROBER=false" | sudo tee -a /etc/default/grub

    It will ask for your password. It should be the same account password you use to log in to the system.

    🚧
    When you type the password in Linux terminal, nothing is reflected on the screen. It feels as if your system is hanged, as there is no visible feedback. Don’t worry. It’s a security feature and most Linux terminals won’t even show asterisks (*) as you enter the password. Just type it in and enter.

    With os-prober enabled, Grub will look for the presence of other operating systems in EFI folder and will add them in the bootloader menu.

    There is one little problem. The config changes won’t take place unless you update grub.

    Step 2: Update grub

    On Ubuntu and some other distributions, there is a dedicated command to update grub:

    sudo update-grub

    However, on Arch and some other distributions, you’ll end up with update-grub command not found error.

    That’s because update-grub is not a standard command. It is just la stub for this command:

    sudo grub-mkconfig -o /boot/grub/grub.cfg

    Run the above command if your system doesn’t have update-grub.

    It should show an output like this:

    Missing Windows from Grub After Dual Boot? Here's What You Can Do

    And as you can see in the above output, grub is probing for other OS and has found Windows boot manager. This is an indication that when you reboot the system, grub should show Windows in the available option.

    Missing Windows from Grub After Dual Boot? Here's What You Can Do
    And Windows is back in Grub

    Still no Windows boot manager?

    See, this method only works when dual boot succeeded properly and you have all EFI settings located in the same folder under the same ESP partition.

    If that’s not the case, you could try accessing the UEFI settings, go to boot order. Windows boot manager should be present there and if you move it up the order, you can boot from it into Windows.

    This is not the most convenient option, I understand but it’s a workaround until you figure out why Grub bootloader could not see Windows.

    💡 Bonus tip: The time synchronization issue

    Since we are discussing dual booting Windows and Linux, let me share another potential issue you’ll encounter. You’ll notice that system time changes when you switch between Windows and Linux. You can fix it, if you want.

    [Solved] Wrong Time in Windows 10 After Dual Boot With Linux
    If you dual boot Windows and Linux, you’ll notice that often one of them shows incorrect time. Here’s why that happens and what you can do to fix it.
    Missing Windows from Grub After Dual Boot? Here's What You Can DoIt’s FOSSAbhishek Prakash
    Missing Windows from Grub After Dual Boot? Here's What You Can Do

    💬 I hope this little trick helps you get a better dual booting experience. Let me know in the comments if you were able to get Windows back in Grub.

    Source: Read More

    Facebook Twitter Reddit Email Copy Link
    Previous ArticleQreator – create your own QR codes
    Next Article Serpent OS: Un Futuro a Rischio a Causa di Difficoltà Finanziarie

    Related Posts

    News & Updates

    Windows 11 version 25H2: Everything you need to know about Microsoft’s next OS release

    May 31, 2025
    News & Updates

    Elden Ring Nightreign already has a duos Seamless Co-op mod from the creator of the beloved original, and it’ll be “expanded on in the future”

    May 31, 2025
    Leave A Reply Cancel Reply

    Continue Reading

    CodeSOD: Insanitize Your Inputs

    CodeSOD: Insanitize Your Inputs

    News & Updates

    Build an end-to-end RAG solution using Knowledge Bases for Amazon Bedrock and the AWS CDK

    Development

    The Human AI “Srinidhi” Thinks Vibe-Coding is the Future as it Lets 10 Engineers Do the Work of 1,000

    Artificial Intelligence

    Meet Plandex: An Open-Source Terminal-based AI Coding Engine for Complex Tasks

    Development

    Highlights

    Development

    CISA Advances Open-Source Software Security with Strategic Initiatives and Community Collaboration

    July 9, 2024

    The Cybersecurity and Infrastructure Security Agency (CISA) has announced its next phase to enhance the…

    Lummi: Say Goodbye to Boring Stock Photos Forever

    July 4, 2024

    [Fix] How To Reopen Recently Closed Tabs In Chrome, Firefox, Safari, Edge

    June 15, 2024

    Best Disk Cleanup Alternatives for Your Windows PC: Free & Paid

    July 1, 2024
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.