Windows Activation

https://docs.microsoft.com/en-us/windows-server/get-started/kmsclientkeys

  • To install the KMS key, type slmgr /skms kms8.msguides.com
  • Type in slmgr /skms kms8.msguides.com
  • To activate online, type slmgr.vbs /ato

FYI,

Go to this site to download the Windows 10 installation media.
https://www.microsoft.com/en-au/software-download/windows10

You will be able to create a bootable media using a flashdrive.

Powershell on Android Mobile (Userland)

The idea behind this is to install a Linux OS into your mobile and install powershell into the OS.

screenshot from PlayStore

Step 1 – Install and Run Userland.
Step 2 – Choose Ubuntu (18.04) – Enter username and Passwords, choose SSH

Wait a few minutes while loading filesystem

Step 3 – You will eventually see this. Login using ssh password entered before.

Step 4 – Do update and upgrade. (Press Y to agree to upgrade)
sudo apt-get update && sudo apt-get dist-upgrade

Setp 5 – Install wget
sudo apt-get install wget

Step 6 – Create a folder
mkdir ps
cd ps

Step 7 – Download latest release from https://github.com/PowerShell/PowerShell/releases/,
be sure to choose a powershell-xxx-linux-arm64.tar.gz.

wget https://github.com/powershell/powershell/relases/download/download/v7.0.3/powershell-7.0.3-linux-arm64.tar.gz

Step 8 – extract the files from tar.gz
tar -xzvf powershell-7.0.3-linux-arm64.tar.gz

Step 9 – Additional tools needed for this.
sudo apt-get install libunwind8 icu-devtools

Step 9 – type in ./pwsh in the /ps directory to run powershell.

Step 10 (optional) – Adding in PATH variable permanently.
Install file editor
sudo apt-get install nano

Verify the PATH of pwsh directory
sudo find / -name pwsh

Edit ~/.Profile
sudo nano ~/.Profile

Add in PATH=$PATH:/home/username/ps at the bottom of the page

Save and Exit (Ctrl + X)

Type in pwsh to run powershell after this.

Activating your Office 365 using KMS client key

Source from: https://msguides.com/microsoft-software-products/activate-office-365-proplus-free.html

1. Manual method

Time needed: 1 minute.

Manually activate your Office 365 using KMS client key.

Open command prompt as admin.

First, you need to open command prompt with admin rights, then follow the instruction below step by step. Just copy/paste the commands and do not forget to hit Enter in order to execute them.

Navigate to your Office folder.

If you install your Office in the ProgramFiles folder, the path will be “%ProgramFiles%\Microsoft Office\Office16” or “%ProgramFiles(x86)%\Microsoft Office\Office16”. It depends on the architecture of the Windows OS you are using. If you are not sure of this issue, don’t worry, just run both of the commands above. One of them will be not executed and an error message will be printed on the screen.

cd /d %ProgramFiles%\Microsoft Office\Office16
cd /d %ProgramFiles(x86)%\Microsoft Office\Office16

Convert your Office license to volume one if possible.

If your Office is got from Microsoft, this step is required. On the contrary, if you install Office from a Volume ISO file, this is optional so just skip it if you want.

for /f %x in ('dir /b ..\root\Licenses16\proplusvl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%x"

Use KMS client key to activate your Office

Make sure your PC is connected to the internet, then run the following command.

cscript ospp.vbs /inpkey:XQNVK-8JYDB-WJ9W3-YJ8YR-WFG99
cscript ospp.vbs /unpkey:BTDRB >nul
cscript ospp.vbs /unpkey:KHGM9 >nul
cscript ospp.vbs /unpkey:CPQVG >nul
cscript ospp.vbs /sethst:kms8.msguides.com
cscript ospp.vbs /setprt:1688
cscript ospp.vbs /act

A Faster way – Copy everything here into a text file

@echo off title Activate Office 365 ProPlus for FREE - MSGuides.com&cls&echo ============================================================================&echo #Project: Activating Microsoft software products for FREE without software&echo ============================================================================&echo.&echo #Supported products: Office 365 ProPlus (x86-x64)&echo.&echo.&(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")&(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")&(for /f %%x in ('dir /b ..\root\Licenses16\proplusvl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&(for /f %%x in ('dir /b ..\root\Licenses16\proplusvl_mak*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&echo.&echo ============================================================================&echo Activating your Office...&cscript //nologo slmgr.vbs /ckms >nul&cscript //nologo ospp.vbs /setprt:1688 >nul&cscript //nologo ospp.vbs /unpkey:WFG99 >nul&cscript //nologo ospp.vbs /unpkey:DRTFM >nul&cscript //nologo ospp.vbs /unpkey:BTDRB >nul&cscript //nologo ospp.vbs /inpkey:XQNVK-8JYDB-WJ9W3-YJ8YR-WFG99 >nul&set i=1 :server if %i%==1 set KMS=kms7.MSGuides.com if %i%==2 set KMS=kms8.MSGuides.com if %i%==3 set KMS=kms9.MSGuides.com if %i%==4 goto notsupported cscript //nologo ospp.vbs /sethst:%KMS% >nul&echo ============================================================================&echo.&echo. cscript //nologo ospp.vbs /act | find /i "successful" && (echo.&echo ============================================================================&echo.&echo #My official blog: MSGuides.com&echo.&echo #How it works: bit.ly/kms-server&echo.&echo #Please feel free to contact me at msguides.com@gmail.com if you have any questions or concerns.&echo.&echo #Please consider supporting this project: donate.msguides.com&echo #Your support is helping me keep my servers running everyday!&echo.&echo ============================================================================&choice /n /c YN /m "Would you like to visit my blog [Y,N]?" & if errorlevel 2 exit) || (echo The connection to my KMS server failed! Trying to connect to another one... & echo Please wait... & echo. & echo. & set /a i+=1 & goto server) explorer "http://MSGuides.com"&goto halt :notsupported echo.&echo ============================================================================&echo Sorry! Your version is not supported.&echo Please try installing the latest version here: bit.ly/odt2k16 :halt pause >nul

Run it as a .bat file.