commit 8c532c32b5894331df8848895d53736e6e1bd557
parent bf7706bfdf184c6234afb9dabf9568573a3795c3
Author: Jack Mordaunt <jackmordaunt@gmail.com>
Date: Sat, 27 Jun 2020 17:12:49 +0800
feat: pre-populate with common kms.
Diffstat:
| M | main.go | | | 55 | +++++++++++++++++++++++++++++++++++++++++++++++++++++-- |
1 file changed, 53 insertions(+), 2 deletions(-)
diff --git a/main.go b/main.go
@@ -11,9 +11,60 @@ import (
var (
// populate with key management servers.
- servers []string
+ servers []string = []string{
+ "kms.srv.crsoo.com",
+ "cy2617.jios.org",
+ "kms.digiboy.ir",
+ "kms.cangshui.net",
+ "kms.library.hk",
+ "hq1.chinancce.com",
+ "kms.loli.beer",
+ "kms.v0v.bid",
+ "54.223.212.31",
+ "kms.jm33.me",
+ "nb.shenqw.win",
+ "kms.izetn.cn",
+ "kms.cin.ink",
+ "222.184.9.98",
+ "kms.ijio.net",
+ "fourdeltaone.net:1688",
+ "kms.iaini.net",
+ "kms.cnlic.com",
+ "kms.51it.wang",
+ "key.17108.com",
+ "kms.chinancce.com",
+ "kms.ddns.net",
+ "windows.kms.app",
+ "kms.ddz.red",
+ "franklv.ddns.net",
+ "kms.mogeko.me",
+ "k.zpale.com",
+ "amrice.top",
+ "m.zpale.com",
+ "mvg.zpale.com",
+ "kms.shuax.com",
+ "kensol263.imwork.net:1688",
+ "xykz.f3322.org",
+ "kms789.com",
+ "dimanyakms.sytes.net:1688",
+ "kms8.MSGuides.com",
+ "kms.03k.org:1688",
+ "kms.ymgblog.com",
+ "kms.bige0.com",
+ "kms9.MSGuides.com",
+ "kms.cz9.cn",
+ "kms.lolico.moe",
+ "kms.ddddg.cn",
+ "kms.zhuxiaole.org",
+ "kms.moeclub.org",
+ "kms.lotro.cc",
+ "zh.us.to",
+ "noair.strangled.net:1688",
+ }
// populate with keys for the windows version you want to activate.
- keys map[winVer][]string
+ keys map[winVer][]string = map[winVer][]string{
+ pro: {},
+ }
)
func main() {