Note: please buy a original Windows key. This is only for educational purposes. Some keys might not work.
First type:
slmgr /ipk <YOUR KEY>
And activate your default KMS server using this following commands below:
@echo off | |
:: Source: https://medium.com/wireless-bidet/how-to-activate-windows-10-using-command-prompt-9c5d248f3420 | |
:: The Win10Lite Team condemns piracy in all forms. Only run this script if you know what it does. | |
:: BatchGotAdmin below | |
:------------------------------------- | |
title Administrator rights required |
var userAgent = navigator.userAgent.toLowerCase(); | |
var devices = new Array('nokia','iphone','blackberry','sony','lg','htc_tattoo','samsung','symbian','SymbianOS','elaine','palm','series60','windows ce','android','obigo','netfront','openwave','mobilexplorer','operamini'); | |
var url_redirect = 'http://www.example.com'; | |
function mobiDetect(userAgent, devices) { | |
for(var i = 0; i < devices.length; i++) { | |
if (userAgent.search(devices[i]) > 0) { | |
return true; | |
} | |
} | |
return false; |
public class main { | |
public static void main(String[] args) { | |
System.out.println("Hello World!"); | |
} | |
} |
@echo off | |
REM Credits to https://stackoverflow.com/a/10052222 | |
REM And https://sites.google.com/site/eneerge/scripts/batchgotadmin | |
:: BatchGotAdmin | |
:------------------------------------- | |
REM --> Check for permissions | |
IF "%PROCESSOR_ARCHITECTURE%" EQU "amd64" ( | |
>nul 2>&1 "%SYSTEMROOT%\SysWOW64\cacls.exe" "%SYSTEMROOT%\SysWOW64\config\system" |