Skip to main content

[windows 10]: Product keys to install Microsoft Windows 10 Preview

Product keys to install Microsoft Windows 10 Preview



Windows 10 Home 32-bit/64-bit: TX9XD-98N7V-6WMQ6-BX7FG-H8Q99

Windows 10 Pro 32-bit/64-bit: VK7JG-NPHTM-C97JM-9MPGT-3V66T

Windows 10 Enterprise 32-bit/64-bit: NPPR9-FWDCX-D2C8J-H872K-2YT43


According to http://windows.microsoft.com/en-us/windows-10/activation-in-windows-10, starting with the November update, Windows 10 (Version 1511) can be activated using some Windows 7, Windows 8, and Windows 8.1 product keys.

Windows 10 (Version 1511) can be activated using some Windows 7, Windows 8, and Windows 8.1 product keys.
Windows 10 (Version 1511) can be activated using some Windows 7, Windows 8, and Windows 8.1 product keys. 

To check current version, run command winver.

Command to check Windows version: winver
Command to check Windows version: winver

Microsoft Windows 10 Version 1511
Microsoft Windows 10 Version 1511


Popular posts from this blog

Red Hat Enterprise Linux Developer Subscription

subscription-manager register subscription-manager subscribe subscription-manager list subscription-manager repos --list-enabled

How to charge your device from USB Port

First of all, check BIOS Settings of your laptop or desktop Dell Look for USB PowerShare BIOS Settings: USB PowerShare Lenovo Look for Always On USB Charge in Off Mode BIOS Settings: Enable Always On USB Charge in Off Mode

MySQL: Notes

Ways to check MySQL version mysql --version mysql -V dpkg -l 'mysql-sever' mysql -u root -p How to check MySQL version: mysql --version Database folder On Microsoft Windows, by default, MySQL save databases in this folder: %ProgramData%\MySQL\MySQL Server 5.5\data Check databases' size SELECT table_schema AS "Database name", SUM(data_length + index_length) / 1024 / 1024 AS "Size (MB)" FROM information_schema.TABLES GROUP BY table_schema; Export database schema $ mysqldump -u root -p --no-data wordpress1001 > c:\backup\schema-wordpress1001.sql Enter password: **************** Create a dedicated user to backup databases Give credit to: http://www.fromdual.com/privileges-of-mysql-backup-user-for-mysqldump Create dedicated mysql user and grant privileges to run backup $ mysql -u root -p CREATE USER 'backupdb'@'localhost' IDENTIFIED BY 'passwordhere'; GRANT SELECT,SHOW VIEW,RELOAD,REPLICATION CLIENT...