CreateSrsMedia not working due to windows 10 version

Sastro Chang 1 Reputation point
2022-01-26T09:52:05.197+00:00

Hello

I am trying to create installation media (CreateSrsMedia.ps1) for Intel NUC PC.

I encounter error below and do not have any idea how to obtain Windows 10 (version 10.0.19041.631)

Your Windows installation media is version 10.0.19041.1466. Your SRSv2 kit requires version 10.0.19041.631

Can somebody advice me what to do?

Regards,
Sastro Chang

Microsoft Teams
Microsoft Teams
A Microsoft customizable chat-based workspace.
9,009 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Yuki Sun-MSFT 40,781 Reputation points
    2022-01-27T02:30:32.23+00:00

    Hi @Sastro Chang ,

    According to the documentation below, "A specific version of Windows 10 is required, and this version is only available to volume licensing customers. You can get a copy from the Volume Licensing Service Center."
    Build a Microsoft Teams Rooms image

    So it's recommended to login to the VLSC and see if you are able to get a copy of the required version.

    Additionally, based on my research, some users worked around a similar error by modifying the following part in the CreateSrsMedia.ps1 script, chaning the last line from "return $false" to "return &true":

    # We only accept media with a version number matching the version required   
        # by the SRSv2 kit.   
        if ($img.Version -ne $KitOsRequired) {   
            Write-Host ("Your Windows installation media is version {0}. Your SRSv2 kit requires version {1}." -f $img.Version, $KitOsRequired)   
            return $false   
    

    See discussion in the thread below:

    So in case you failed to find the required version via VLSC, personally I'd suggest having a go by modifying the script file and see how it goes.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.