How to Activate Windows 11 Pro For Free in 2024

How to Activate Windows 11 Pro For Free in 2024
Photo by Windows / Unsplash

Activating Windows and Office software is essential to ensure they work properly and comply with licensing agreements. PowerShell offers a straightforward way to handle this activation. Here’s a simple guide to help you activate your Windows and Office software using PowerShell, including alternative methods and troubleshooting tips.

Opening PowerShell

  1. Open PowerShell:
    • Right-click on the Start menu.
    • Choose either “Windows PowerShell” or “Terminal.”

Running the Activation Script

  1. Execute the Activation Script:
    • Copy and paste the following command into PowerShell and press Enter:
      powershell
      irm https://get.activated.win | iex
    • Note: The irm command (short for Invoke-RestMethod) fetches a script from the provided URL, while iex (short for Invoke-Expression) runs it.
  2. Alternative URL:
    • If the above URL is blocked or inaccessible, you can use this alternative, but note it will be discontinued after December 31, 2024:
      powershell
      irm https://massgrave.dev/get | iex

Special Instructions for Older Windows Builds

  • For Windows Builds 17134 and Earlier:
    • Run this command before executing the activation script to ensure compatibility:
      powershell
      [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12

Choosing an Activation Method

  • After running the script, you’ll see activation options. Select one:
    • [1] HWID for Windows activation.
    • [2] Ohook for Office activation.

Important Notes

  • Verify URLs: Always check the URL before running commands to avoid security risks. Make sure you’re downloading from a trusted source.
  • Watch for Malware: Be cautious of potential malware posing as activation tools. Confirm sources and be mindful of different URLs in similar commands.

Features of MAS

  • HWID Method: Provides permanent activation for Windows 10 and 11.
  • Ohook Method: Ensures permanent activation for Office.
  • KMS38 Method: Activates Windows/Server until 2038.
  • Online KMS Method: Offers 180-day activation for Windows/Office, with renewal for a lifetime.
  • Advanced Troubleshooting: Includes tools for activation issues and preactivation $OEM$ folders.
  • Edition Changes: Allows changing Windows and Office editions.
  • Status Checks: Lets you check the activation status of Windows/Office.
  • Availability: Available in both all-in-one and separate file versions.
  • Open Source: Fully open-source, based on batch scripts with minimal antivirus detections.

Activation Summary

Activation Type Supported Product Activation Period Internet Needed?
HWID Windows 10-11 Permanent Yes
Ohook Office Permanent No
KMS38 Windows 10-11-Server Until the Year 2038 No
Online KMS Windows/Office 180 Days (Lifetime with Renewal Task) Yes

By following these steps, you can activate your Windows and Office software efficiently using PowerShell. Always use trusted sources for activation tools and proceed with caution.

Source: Massgrave