"Windows cannot find the Microsoft Software License Terms" Error During Installation Process

Shahir Kudrat Rafan 0 Reputation points
2025-06-11T12:43:21.9466667+00:00

I'm encountering an issue with the installation of Windows 10 using the ISO file "Win10_22H2_English_x64.iso" sourced from Microsoft's official site. The installation was performed from a USB flash drive created with Rufus.

6a209a21-562f-4f69-90e1-2aa766f76d7b

Since the install.wim file exceeds 4GB, the USB was formatted to NTFS, but that didn't make any differences or any issues. After booting from the USB and selecting language/timezone/region, the installation skipped the product key and edition selection and went straight to the EULA. This could be due to an outdated, generic product key embedded in the BIOS, which was obtained using the command wmic path softwarelicensingservice get OA3xOriginalProductKey.

I created an ei.cfg file with the following content:

[Channel]
Retail
[VL]
0

This enabled selection of the Windows edition, but not the product key. Upon choosing "Windows 10 Pro," the installation froze momentarily and displayed the error: "Windows cannot find the Microsoft Software License Terms. Make sure the installation sources are valid and restart the installation.":

06b35b78-15e4-4577-bc82-f222541dbf68

This error did not occur when it automatically chose Windows 10 Home Single-Language edition.

Attempts have been made with different USB ports, various ISO sources, disabling secure boot, reformatting, and enabling Legacy Mode, but the outcome remains unchanged. The ISO file hash was verified as correct: "A6F470CA6D331EB353B815C043E327A347F594F37FF525F17764738FE812852E".

There is no license.rtf file in the sources folder on the USB; could its absence be the cause of the error? Would adding a license.rtf file resolve this issue?

Additionally, there's a need to unlink the digital license tied to the Microsoft account to prevent auto-activation during the installation.

Here are the system specifications:

  • Processor: Intel(R) Core(TM) i5-8250U CPU @ 1.60GHz 1.80 GHz
  • Installed RAM: 8.00 GB (7.89 GB usable)
  • Storage: 932 GB HDD WDC WD10JPVX-60JC3T1
  • Graphics Card: NVIDIA GeForce 940MX (4 GB), Intel(R) UHD Graphics 620 (128 MB)
  • System Type: 64-bit operating system, x64-based processor
  • Edition: Windows 10 Pro
  • Version: 2009
  • OS Build: 19045.5854

USB details:

  • USB: VendorCo ProductCode FirstChip FC1179
  • Disk: 1
  • Type: Removable
  • Partition: GPT
  • Capacity: 60000 MB
  • Volumes: CCCOMA_X64FRE_EN-US_DV9 (D:) - 59997 MB, UEFI_NTFS - 1 MB

Further details can be accessed here: Pastebin link.

Summary:

  1. Multi-edition ISO downloaded.
  2. install.wim exceeds FAT32 limit, NTFS used.
  3. Automatic skipping of product key due to embedded, incorrect key.
  4. ei.cfg allowed edition choice but not product key.
  5. Encountered "Windows cannot find the Microsoft Software License Terms" error with one edition.
  6. ISO validated and unchanged.
  7. Additional information available here.
  8. Assistance needed to unlink digital license from Microsoft account.
  9. Current OS version is Windows 10 Pro 19045.5854.
  10. USB information provided.

This problem only occurs on my laptop, and doesn't happen on other computers (I tested it)

Windows 10 Setup
Windows 10 Setup
Windows 10: A Microsoft operating system that runs on personal computers and tablets.Setup: The procedures involved in preparing a software program or application to operate within a computer or mobile device.
2,064 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Joseph Tran 330 Reputation points
    2025-06-12T16:52:41.18+00:00

    Based on my knowlegde, I jave some recommend steps for you to try it out then let me know the results :

    - Use a Compressed install.esd ISO Instead of install.wim

    The official ISO from Microsoft usually uses install.esd, which is smaller than 4GB. You can:

    Use the Media Creation Tool to download and create a USB directly — it uses FAT32 and will work around the NTFS+UEFI issue.

    • Or extract the ISO, convert install.wim to install.esd, then repackage the ISO and re-burn it using Rufus.
    • Convert WIM to ESD (if needed):

    dism /Export-Image /SourceImageFile:"install.wim" /SourceIndex:6 /DestinationImageFile:"install.esd" /Compress:recovery /CheckIntegrity

     

    - Ensure ei.cfg Is Present and Correct

    Place ei.cfg in \sources with this content (correctly formatted):

    [EditionID]

    Professional

     

    [Channel]

    Retail

     

    [VL]

    0

    -> This ensures Pro is selected and not overridden by the BIOS key. Also ensure no PID.txt file exists if you don’t want any auto-key injection.

     

    - Try FAT32 Again With Split WIM

    If you want to keep using FAT32 (better UEFI compatibility), you can split install.wim:

    dism /Split-Image /ImageFile:"install.wim" /SWMFile:"install.swm" /FileSize:4000

    -> Place the resulting install.swm files into \sources, delete the original install.wim.

     

    0 comments No comments

Your answer

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