Forum Discussion

ToddM_KineticIT's avatar
ToddM_KineticIT
Copper Contributor
Aug 13, 2019
Solved

MS Teams Rooms SRSv2 4.0.105.0 - Windows 10 Media version does not match

Hi,

 

I am attempting to run the CreateSrsMedia.ps1 script as an elevated administrator (using x64 powershell)

The settings I'm using:

[2] Polycom MSR

[0] Surface Pro 4

 

I get stuck at the following:

"Please enter the path to the root of your Windows install media:"

 

When I direct to the root path of my windows 1803 copy I get the below message:

"Your Windows installation media is version 10.0.17134.228. Your SRSv2 kit requires version 10.0.17134.1."

 

How am I able to retrieve/download a copy of 10.0.17134.1?

 

Thanks

Todd

 

 

 

  • For anyone experiencing the issue that I did,

     

    I ended up editing the powershell script so that it ignored the windows version check = 10.0.17134.1.

    I only did this as I knew I had windows 10 build 1803 and decided to take a chance and it worked out.

  • ToddM_KineticIT's avatar
    ToddM_KineticIT
    Copper Contributor

    For anyone experiencing the issue that I did,

     

    I ended up editing the powershell script so that it ignored the windows version check = 10.0.17134.1.

    I only did this as I knew I had windows 10 build 1803 and decided to take a chance and it worked out.

    • sprintingPython's avatar
      sprintingPython
      Copper Contributor

      Hi Todd,

       

      Can you advice where exactly did you select ignore the version? I have tried to change the XML files to look for 10.0.18362.30 but no luck.

       

      • jguzman73's avatar
        jguzman73
        Copper Contributor

        sprintingPython 

        He mofificado el script como pongo a continuación.

        Ha creado el usb, con la otra versión de windows, he puesto un true en lugar de un false cuando chequea las versiones, asi que salta esa comprobación.

         

        # 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
        return $true

         

         

Resources