Good day Jacky
When you capture a Windows 11 Pro image after running Sysprep, the installer doesn’t always carry over the edition metadata cleanly. That’s why, when you deploy it, the setup wizard thinks the image doesn’t match any valid edition and rejects every product key you throw at it. Generic keys, retail keys, PID.txt, EI.cfg they all fail because the installer literally doesn’t know what edition it’s supposed to be activating against.
The cleanest way is to make sure your captured image has the correct edition flag baked in. You can do this by editing the EI.cfg file in the sources folder to explicitly set the edition to Professional and skip the product key prompt altogether. Another option is to use DISM to check the edition of the WIM file you captured if it shows something like “Core” or “Enterprise” instead of “Professional,” that mismatch explains the rejection. Once you confirm the edition, you can re‑export the image with the right flag so the installer knows what it’s dealing with.
If you want to bypass the product key screen entirely during testing, adding an EI.cfg with [EditionID] Professional and [Channel] Retail usually does the trick. That way, setup won’t even ask for a key until after installation, and you can activate later once the OS is up. Just be careful not to mix editions, for example, trying to activate a Pro image with an Enterprise key will always fail.
So in short: check the edition metadata in your WIM, adjust EI.cfg or PID.txt properly, and you should be able to roll this image out without hitting that product key wall. Give that a try, and if this helps unblock your rollout, please hit “Accept Answer” so we know we’re heading in the right direction and let me know if you need any assistance. Thank you!