激活Windows和Office

使用PowerShell激活

  1. 打开 PowerShell:按win+X选择PowerShell(管理员)
  2. 输入指令
    1
    irm https://get.activated.win | iex
  3. 选择激活选项

选项解析

Activation Type Supported Product Activation Period Is Internet Needed?
HWID Windows 10-11 Permanent Yes
Ohook Office Permanent No
TSforge Windows / ESU / Office Permanent Yes, needed on build 19041 and later
KMS38 Windows 10-11-Server Till the Year 2038 No
Online KMS Windows / Office 180 Days. Lifetime With Renewal Task Yes

激活Jetbrain

  • 环境介绍
    • 操作系统:Linux,Windows
    • 软件:Jetbrain系列产品
  • 本文记录Pycharm激活过程,官方文档:CodeKey Run,Jetbrains

Windows激活

  1. 使用PowerShell激活:使用Win + X选择Windows PowerShell(管理员)运行
  2. 运行指令
    1
    irm ckey.run | iex
  3. 选择要激活的软件
  4. 复制官网上面的激活码到软件里面激活
    .

Linux 激活

  1. 打开终端输入指令
    如果有wget指令
    1
    wget -q ckey.run -O ckey.run
    如果没有wget指令可以使用curl指令
    1
    curl -Ls ckey.run -o ckey.run
  2. 运行脚本
    1
    bash ckey.run
  3. 按需激活软件

取消激活

  • Windows取消激活:
    1
    irm ckey.run/uninstall|iex
  • Linux取消激活
    1
    2
    wget -q ckey.run/uninstall -O ckey.run
    bash ckey.run
    1
    2
    curl -Ls ckey.run/uninstall -o ckey.run
    bash ckey.run