Skip to content

Instantly share code, notes, and snippets.

Activate Windows 8, 8.1, 10 and 11 Pro for Free

A guide how to get and activate Windows 8, 8.1, 10 and 11 Pro for free!

NOTE

If you see the Windows keyboard button in this guide; and you can't find it on your keyboard, you likely have/had Windows 10 which has the button . If you can't find that one, you likely have a PC that has been upgraded to Windows 8/8.1/10/11 from Windows 8.1/8/7/Vista/XP and other ones. If you have one of those, refer the Windows key button to as yours. A list of them is below:

Windows key buttons

- Windows 11

- Windows 10

@salmanamin0
salmanamin0 / windows_and_office_kms_setup.adoc
Created July 22, 2023 14:34 — forked from jerodg/windows_and_office_kms_setup.adoc
Activate Windows and Office Using KMS Server

Microsoft Windows and Office KMS Setup

@salmanamin0
salmanamin0 / wp-add-visual-editor-meta-box.php
Created May 10, 2024 04:15 — forked from DavidWells/wp-add-visual-editor-meta-box.php
WordPress :: Custom Additional Custom WYSIWYG Metabox
<?php // Add additonal edit box:
define('WYSIWYG_META_BOX_ID', 'my-editor');
define('WYSIWYG_EDITOR_ID', 'myeditor'); //Important for CSS that this is different
define('WYSIWYG_META_KEY', 'extra-content');
add_action('admin_init', 'wysiwyg_register_meta_box');
function wysiwyg_register_meta_box(){
add_meta_box(WYSIWYG_META_BOX_ID, __('Top Box', 'wysiwyg'), 'wysiwyg_render_meta_box', 'post');
add_meta_box(WYSIWYG_META_BOX_ID, __('Top Box', 'wysiwyg'), 'wysiwyg_render_meta_box', 'page', 'normal');
add_meta_box(WYSIWYG_META_BOX_ID, __('Top Box', 'wysiwyg'), 'wysiwyg_render_meta_box', 'services-page', 'normal'); // add to custom post type