Skip to content

Instantly share code, notes, and snippets.

View kimgiftww's full-sized avatar

Skunpoj Thanarojsophon kimgiftww

View GitHub Profile

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:

curl -sSL https://get.docker.com/ | sh
sudo docker pull jupyter/base-notebook
sudo usermod -aG docker ubuntu
sudo docker run --name tqmjupyter1 --user root -d -v /home/ubuntu:/home/jovyan \
-p 80:8080 -p 443:8443 -p 8888:8888 -p 8787:8787 -p 8265:8265 -p 3000:3000 -p 5000:5000 \
-e PASSWORD=password -e GRANT_SUDO=yes -e GEN_CERT=yes jupyter/base-notebook start-notebook.sh \
--allow-root --NotebookApp.password='sha1:85b4fb064417:25b3ba0a934b582a6bb6488a0e1ea07f6323a278'
sudo docker exec tqmjupyter1 sudo apt-get update
sudo docker exec tqmjupyter1 sudo apt-get upgrade -y