Office Tool Plus#
利用開源的 Office Tool Plus 實現 Office 全家桶的破解,結合 KMS 伺服器實現 License 授權(需要選擇 Office LTSC 專業增強版 2024 - 批量許可證
之類的批量許可證)
KMS 伺服器#
KMS 可用伺服器#
目前可用 KMS 伺服器列表可在 KMS 地址列表 中查詢。
自建 KMS 伺服器#
採用 Docker Compose 的方式部署(基於 Traefik 反代),首先拉取鏡像
docker pull teddysun/kms
使用如下 compose.yml 運行鏡像
services:
kms:
image: teddysun/kms
restart: unless-stopped
container_name: kms
labels:
traefik.enable: true
traefik.docker.network: example
traefik.http.routers.kms.rule: Host(`kms.example.com`)
traefik.http.services.kms.loadbalancer.server.port: 1688
networks:
- example
networks:
example:
external: true
配置 KMS 伺服器為 kms.example.com 即可。