Skip to content

Instantly share code, notes, and snippets.

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:

@joerodgers
joerodgers / Grant-UserPermission.ps1
Last active April 16, 2024 11:37
Example of using the SP.Web.ShareObject REST endpoint to share a file or folder with a user email address.
#requries -modules "PnP.PowerShell"
function Get-PeoplePickerValueForEmail
{
[CmdletBinding()]
param
(
[Parameter(Mandatory=$true)]
[string]
$Email
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PublicReadGetObject",
"Effect": "Allow",
"Principal": "*",
"Action": [
"s3:GetObject"
],
@ayebrian
ayebrian / vmware.md
Last active April 16, 2024 11:36
VMware ESXi 8 / vCenter 8 / Workstation 17 8 license key 2024

Free VMware license keys, they should work. It works for all cores on your host system(ESXi).

vCenter Server 8 Standard

Key Tested
4F282-0MLD2-M8869-T89G0-CF240
0F41K-0MJ4H-M88U1-0C3N0-0A214

ESXi 8

Key Tested
@koshatul
koshatul / README.md
Last active April 16, 2024 11:36
use Apple Keychain to store GPG Passphrases

gpg-agent setup

Need to setup gpg-agent first, on OSX I use keychain (it also does ssh-agent)

$ brew info keychain
keychain: stable 2.8.5
User-friendly front-end to ssh-agent(1)
https://www.funtoo.org/Keychain
/usr/local/Cellar/keychain/2.8.5 (7 files, 108.5KB) *
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active April 16, 2024 11:36
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@bmatthewshea
bmatthewshea / certbot_pip_install-debian_ubuntu.md
Last active April 16, 2024 11:36
Debian/Ubuntu - CERTBOT without SNAP/SNAPD

CERTBOT - Install using Python PIP

Install Certbot using Python PIP (Package Installer for Python) - without using SNAP, APT or SYSTEMD. (Debian/Ubuntu)


This guide will help you install LetsEncrypt / Certbot using venv PIP under Debian/Ubuntu.

  • This guide has been tested up to Debian 12 / Bookworm.
@cliv
cliv / userdata.txt
Created May 27, 2016 22:20
AWS UserData to configure Windows EC2 instance using powershell from S3 Raw
<powershell>
######
# Charlie Livingston <charlie@siplay.com>
# MIT Licensed - Do whatever you like with this.
#
# Simple code for a windows machine to grab a set of .ps1 files off of S3 and
# run them locally depengind on how a machine is tagged in EC2
#
# The xml-ish <powershell></powershell> tags in the script make the file invalid powershell to run directly in a machine
# but are required by EC2Config when passed into the instance as userdata