windows和office微软官方免费激活教程

ops/2024/10/11 11:24:18/

微软提供了windows系统和office的官方免费激活,其实不用去买什么激活码,官方提供了激活方式,完全免费。目前测试没发现什么问题,windows还支持永久激活,比一些乱七八糟的kms激活工具还省心。

github地址:GitHub - massgravel/Microsoft-Activation-Scripts: A Windows and Office activator using HWID / Ohook / KMS38 / Online KMS activation methods, with a focus on open-source code and fewer antivirus detections.

操作流程:

Download / How to use it?

Method 1 - PowerShell (Recommended)

  • Right-click on the Windows start menu and select PowerShell or Terminal (Not CMD).
  • Copy and paste the code below and press enter
irm https://get.activated.win | iex

or (deprecated, will be retired on Aug 31 2024, use above instead)

irm https://massgrave.dev/get | iex
  • You will see the activation options. Follow the on-screen instructions.
  • That's all.

  • On older Windows builds you may need to run the below command before,
    [Net.ServicePointManager]::SecurityProtocol=[Net.SecurityProtocolType]::Tls12
  • The Powershell method does not work on Windows 7. Use the Method 2 - Traditional instead.
  • The URL get.activated.win may be blocked by some DNS services because it is a new domain.

Method 2 - Traditional

  • Download the file under the code button from GitHub or Bitbucket
  • Right-click on the downloaded zip file and extract
  • In the extracted folder, find the folder named All-In-One-Version
  • Run the file named MAS_AIO-CRC32_XXXXXXXX.cmd
  • You will see the activation options, follow the on-screen instructions.
  • That's all.

To run the scripts in unattended mode, check here

 
Latest Version: 2.6
Release date: 20-Apr-2024

Troubleshooting / Help

Download Original Windows & Office

Homepage - Microsoft Activation Scripts (MAS) | MAS

简单来讲,就是打开powershell,输入:irm https://get.activated.win | iex,回车按照菜单来搞就行了,貌似windows和office都可以永久激活。  


http://www.ppmy.cn/ops/93055.html

相关文章

【matlab版】如何利用代码计算声音信号的声压级

1、声压(Sound Pressure) 声压是声波传播过程中引起的介质(如空气、水等)中的压力变化。它是声波的基本物理量之一,用来描述声波在某一位置上的瞬时压力大小。 声压的单位是帕斯卡(Pa)&#x…

甄选范文“论数据湖技术及其应用”软考高级论文系统架构设计师论文

论文真题 请围绕“数据湖技术及其应用”论题,依次从以下三个方面进行论述。 1.概要叙述你所参与管理或开发的软件项目,以及你在其中所承担的主要工作。 2.详细阐述数据湖技术,并从主要数据来源、数据模式(Schema)转换时机、数据存储成本、数据质量、面对用户和主要支撑…

贝叶斯优化算法(Bo)与最小二乘支持向量机(LSSVM)结合的预测模型(Bo-LSSVM)及其Python和MATLAB实现

### 一、背景 在机器学习领域,模型的性能往往依赖于其超参数的选择。这些超参数的调优是一个重要而复杂的问题,尤其在复杂模型(如支持向量机)中。当模型的性能依赖于多个超参数时,传统的网格搜索和随机搜索方法可能显…

香橙派下安装neo4j

在香橙派(Orange Pi)上安装Neo4j图数据库可以通过以下步骤完成。假设你使用的是基于Debian的Linux发行版(如Armbian),以下是详细的安装步骤: 1. 更新系统 首先,确保你的系统是最新的。打开终端并运行以下命令: sudo apt update sudo apt upgrade -y 2. 安装Java N…

Java常用配置

Java 一、Java发展下载路径JDK和JRE的区别历史由来 二、编译过程Java 基本原理三、安装JDK设置系统默认Java版本设置JAVA_HOME环境变量 三、CMD设置CMD快捷方式CMD命令窗口的编码格式 四、端口操作 一、Java发展 下载路径 JDK下载路径:(推荐下载JDK8u202) https:/…

【数据结构的——红黑树】

目录 一、红黑树简介二、红黑树的特性三、2-3-4树与红黑树的等价关系四、红黑树的操作4.1、旋转操作4.2、红黑树的插入4.2.1、情形一4.2.2、情形二4.2.3、情形三4.2.4、情形四4.2.5、情形五4.2.6、情形六4.2.7、对插入进行小结4.3、红黑树的删除4.3.1、情形一4.3.2、情形二4.3.…

求职 day13总结

总结一下周一的平安寿险电话面(7月29)和周二(7月30)华为od的技术一面、二面、(8月1)资面和等结果流程。 面试前压力挺大的,毕竟这么久还没有技术面过。周日还想再推一下od技术面时间&#xff0…

haproxy七层代理知识点以及各种配置

1.为什么用haproxy 当后端主机有一个出现问题了的时候,我们需要访问的流量全部打到正常工作的后端主机,所以我们需要后端检测,lvs没有后端检测,所以就需要用到haproxy 2.负载均衡 2.1 什么是负载均衡 负载均衡,Loa…