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.
sprintingPython
Nov 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.
jguzman73
Sep 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
- surfaceMohamedattiaOct 12, 2021
Microsoft
The most awesome reply which worked in no time, thanks man for your support