Skip to content

Instantly share code, notes, and snippets.

@AdreeUA
AdreeUA / Activate_Windows_11_Pro_free.md
Created December 8, 2024 18:00 — forked from kimgiftww/Activate_Windows_11_Pro_free.md
Activate Windows 11 Pro free

An guide how to activate Windows 11 Pro for free

Why?

Because you will get some more features like an Bitlocker and host your device as an External Desktop which can be accessed through the internet

Am i also able to switch from any other edition to Pro?

The answer is yes! You can switch from almost any edition to Pro completely for free!

Note for users with unactivated Pro edition

People which already have Pro, but not activated, can skip to this step.

Getting started

What you first need to do is open CMD (Command Prompt) as Administrator using this keyboard key:

@AdreeUA
AdreeUA / Activate_Windows_11_Pro_free.md
Created December 8, 2024 18:00 — forked from kimgiftww/Activate_Windows_11_Pro_free.md
Activate Windows 11 Pro free

An guide how to activate Windows 11 Pro for free

Why?

Because you will get some more features like an Bitlocker and host your device as an External Desktop which can be accessed through the internet

Am i also able to switch from any other edition to Pro?

The answer is yes! You can switch from almost any edition to Pro completely for free!

Note for users with unactivated Pro edition

People which already have Pro, but not activated, can skip to this step.

Getting started

What you first need to do is open CMD (Command Prompt) as Administrator using this keyboard key:

----- BEGIN LICENSE -----
Yu Li
Single User License
EA7E-1062886
5D06D5F4 6657E818 E0652D96 723FB652
10D94235 3D7571B3 914381F7 125D2886
0B2C4C9B 6B17B003 8EB95684 12D272FB
0A69A29E D5F8D4B1 0269DCF5 78B89166
8CBC3523 B621A2F0 6635109C 29880342
054FA47B A259D688 85F49E23 71ACA665
@AdreeUA
AdreeUA / react-scaled-file-upload.js
Created February 24, 2017 18:29 — forked from torgeir/react-scaled-file-upload.js
React scaled file upload
function resize (file, maxWidth, maxHeight, fn) {
var reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = function (event) {
var dataUrl = event.target.result;
var image = new Image();
image.src = dataUrl;
image.onload = function () {
@AdreeUA
AdreeUA / classie.js
Created June 10, 2016 19:04 — forked from desandro/classie.js
classie - class helper functions
/*!
* classie - class helper functions
* from bonzo https://github.com/ded/bonzo
*
* classie.has( elem, 'my-class' ) -> true/false
* classie.add( elem, 'my-new-class' )
* classie.remove( elem, 'my-unwanted-class' )
*/
/*jshint browser: true, strict: true, undef: true */