Forum Discussion
ToddM_KineticIT
Aug 13, 2019Copper Contributor
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 fo...
- Aug 13, 2019
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
Aug 13, 2019Copper 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.
- sprintingPythonNov 16, 2020Copper 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.
- jguzman73Sep 27, 2021Copper Contributor
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 - ToddM_KineticITNov 16, 2020Copper ContributorHi Sprinting Python,
It's been a while since I ran fixed this myself. I can't quite remember of I ended up adding a line or redacting one.
I'll have to attempt to replicate this, unfortunately this is not the best time (I'm sick and work is busier than ever!) I would recommend continue searching for the answer on the tech community forums plus raise a job with Microsoft.
Thanks
Todd- sprintingPythonNov 16, 2020Copper Contributor
ToddM_KineticIT Thanks mate no problem. Figured it out. Hashed out that part of the script and all good.