This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal | |
:: Por @otgo https://github.com/otgo | |
for /f "tokens=2 delims==" %%G in ('wmic os get Caption /value') do ( | |
if not defined VersionDeWindows set VersionDeWindows=%%G | |
) | |
:: Error si no tienes Windows 10 | |
if "x%VersionDeWindows:Windows 10=%" == "x%VersionDeWindows%" ( | |
echo No se detecto que tengas Windows 10 instalado en tu sistema | |
pause |