
使用KMS激活Win10,含第三方服务和自建服务
第三方服务激活
- 使用
管理员
权限,运行两行命令即可(鸣谢:https://03k.org/kms.html)1
2slmgr /skms kms.03k.org
slmgr /ato
自建服务激活
以 CentOS 7为例,含完整的下载代码、编译和安装过程
准备编译环境
1
yum install gcc git
下载源代码
1
2
3
4cd ~/tools
mkdir win
cd win
git clone https://github.com/Wind4/vlmcsd.git编译
1
2cd vlmcsd
make启动vlmcsd服务
1
2
3cd bin
./vlmcsd
ps aux|grep vlmcsd防火墙开启1688端口
1
2firewall-cmd --permanent --zone=public --add-port=1688/tcp
firewall-cmd --reload搞定,回到文章开开头,把
slgmr
后面的域名,改为自己服务器的域名或IP地址即可