Share via

Issue to 2025 ISO file and also setup problem

Scott Huang 3,491 Reputation points
2026-04-21T03:09:31.7333333+00:00

Hi,

I got the issue like the following. Please help.

User's image

Windows for business | Windows Server | Devices and deployment | Set up, install, or upgrade

Answer accepted by question author

  1. Tracy Le 7,650 Reputation points Independent Advisor
    2026-04-21T08:32:44.3666667+00:00

    User's image

    Hi Scott Huang,

    Don't worry about the missing reply. The Microsoft Q&A forum often has a caching delay where email alerts go out immediately, but the website takes 10-15 minutes to update.

    Regarding your question: Yes, MSDN provides the official hash for every ISO. Since I cannot attach a screenshot in the comments, here is exactly what you need to look for:

    Go to your Visual Studio Subscriptions download page and search for your Windows Server 2025 ISO.

    Look at the exact row for the file you downloaded.

    Click the "Info" button (it usually looks like a small 'i' icon) right next to the blue "Download" button.

    A details box will pop up. Look for the line labeled SHA256.

    Copy that long string and compare it with your PowerShell result. If they match perfectly, your ISO is completely fine, and you just need to recreate your bootable USB using Rufus! You can see the attached screenshot for reference

    Tracy.


Answer accepted by question author

  1. Tracy Le 7,650 Reputation points Independent Advisor
    2026-04-21T06:30:01.8066667+00:00

    Hi Scott Huang,

    Ah, I see! Since you downloaded the ISO from MSDN (Visual Studio Subscriptions), the official hash is actually provided right there on the portal.

    Here is how to find it:

    1. Log back into your MSDN download page.

    Locate the exact Windows Server 2025 ISO you downloaded.

    Click on the "Details" or "Info" link right next to the Download button.

    It will expand to reveal the official SHA256 string.

    Now, just compare that website string to the output you got in PowerShell.

    If they match exactly: Your ISO is 100% healthy. The 0xc0000098 error means your USB creation tool broke the boot files during the transfer. You need to recreate the USB stick using Rufus.

    If they do not match: Your download was corrupted over the network. Delete that file and download a fresh copy.

    Let me know how the comparison goes!

    Tracy.

    0 comments No comments

3 additional answers

Sort by: Most helpful
  1. Tracy Le 7,650 Reputation points Independent Advisor
    2026-04-21T09:59:02+00:00

    If those two hashes do not match perfectly, it means your ISO file was corrupted during the download process (usually due to a network glitch or dropped packets). That corrupted file is the exact reason you are getting the 0xc0000098 boot error.

    Your next steps:

    Delete that bad ISO file immediately so you don't accidentally use it again.

    Re-download a fresh copy from MSDN (preferably over a stable, wired connection).

    Once the new download finishes, run that exact same Get-FileHash PowerShell command again.

    Do not try to make a bootable USB with Rufus until those hashes match perfectly. Once they match, you are good to go, Scott Huang .

    0 comments No comments

  2. Tracy Le 7,650 Reputation points Independent Advisor
    2026-04-21T04:22:36.14+00:00

    Hi Scott Huang,

    Here is the exact, modern way to verify your ISO file's integrity:

    1. Open PowerShell.

    Run the following command (replace the path with the actual location of your downloaded ISO): Get-FileHash -Path "C:\path\to\your\WindowsServer2025.iso" -Algorithm SHA256

    Compare the generated hash string with the official SHA256 value from the Microsoft Evaluation Center or your Volume Licensing portal.

    If they don't match: Your download was corrupted. You just need to download a fresh ISO.

    If they DO match: Your ISO is fine, but the USB creation failed. Use a tool like Rufus to recreate the bootable USB drive, as it handles Windows Server ISOs much better than standard burning tools.

    I hope this saves you time chasing down old tools! If this resolves your issue, please click "Accept Answer".

    Tracy.


  3. Q&A Assist
    2026-04-21T03:09:47.67+00:00
    AI generated content. This question contains an answer created with AI from Q&A Assist. Learn more

    The screenshot shows Windows Boot Manager error 0xc0000098 indicating that the boot files (\windows\system32\boot\winload.exe or the BCD configuration) are missing or corrupted. Recovery must be done from proper Windows Server installation media; if the ISO or the media created from it is damaged, both setup and repair will fail.

    Use these steps:

    1. Verify the Windows Server 2025 ISO
      • If the ISO was downloaded, check that it is not corrupted by validating its SHA‑1 checksum with the Microsoft File Checksum Integrity Verifier (FCIV) tool, similar to the method used for other Microsoft ISOs:
        • Install FCIV.
        • Run in an elevated Command Prompt:
                 fciv.exe <ISO-file-name>.iso -sha1
          
        • Compare the returned SHA‑1 value with the checksum provided on the download page. If it does not match, download the ISO again and discard the old one.
      • If the ISO was burned to DVD, recreate the media using a high‑quality disc and a slower burn speed. A bad burn or low‑quality media can cause missing‑file errors during setup and repair.
    2. Prefer USB installation media
      • Instead of DVD, create a bootable USB drive from the verified ISO (for example, using the Windows USB/DVD Download tool or similar). This avoids many read errors that cause messages about missing or corrupt files during installation.
    3. Boot from the verified media and run repair
      • Boot the server from the known‑good Windows Server 2025 installation media.
      • Choose the correct language and keyboard settings.
      • Select “Repair your computer” instead of “Install now”.
      • Use the automatic repair options to fix startup problems. These tools rebuild boot files and the BCD store so that winload.exe can be found and loaded.
    4. If repair still fails
      • Re‑confirm the ISO integrity and the USB/DVD by testing them on another machine or a virtual machine to ensure they boot and start setup correctly.
      • If the media works elsewhere but the server still cannot boot or install, hardware issues (disk or controller) may be present and should be investigated separately.

    These steps address both the ISO/media issues and the boot‑loader error shown in the screenshot so that Windows Server 2025 setup and repair can complete successfully.


    References:

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.