Skip to content

Instantly share code, notes, and snippets.

@xoceunder
xoceunder / activar_windows.cmd
Created August 28, 2020 23:28 — forked from otgo/activar_windows.cmd
Windows 10 Activator - Activador de Windows 10
@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