У меня тоже Windows 10 и по ссылке приведенной не завелось. Правда когда открыл install.cmd и сравнил со своим выводом ver в консоле. То у меня показывает версию не 6.4 а 10.0
Поэтому мне помогло исправление
echo Setup is detecting Windows version...
ver | findstr /il "6\.4\." > nul
if %errorlevel% equ 0 (
echo Microsoft Windows 10 [Version 6.4] detected.
set WindowsVersion=10
goto :BypassVersionError
)
на
ver | findstr /il "10\.0\." > nul
if %errorlevel% equ 0 (
echo Microsoft Windows 10 [Version 10.0] detected.
set WindowsVersion=10
goto :BypassVersionError
)