├── .gitignore ├── LICENSE ├── README.md ├── favicon.ico └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | ## 4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore 5 | 6 | # User-specific files 7 | *.suo 8 | *.user 9 | *.userosscache 10 | *.sln.docstates 11 | 12 | # User-specific files (MonoDevelop/Xamarin Studio) 13 | *.userprefs 14 | 15 | # Build results 16 | [Dd]ebug/ 17 | [Dd]ebugPublic/ 18 | [Rr]elease/ 19 | [Rr]eleases/ 20 | x64/ 21 | x86/ 22 | bld/ 23 | [Bb]in/ 24 | [Oo]bj/ 25 | [Ll]og/ 26 | 27 | # Visual Studio 2015/2017 cache/options directory 28 | .vs/ 29 | # Uncomment if you have tasks that create the project's static files in wwwroot 30 | #wwwroot/ 31 | 32 | # Visual Studio 2017 auto generated files 33 | Generated\ Files/ 34 | 35 | # MSTest test Results 36 | [Tt]est[Rr]esult*/ 37 | [Bb]uild[Ll]og.* 38 | 39 | # NUNIT 40 | *.VisualState.xml 41 | TestResult.xml 42 | 43 | # Build Results of an ATL Project 44 | [Dd]ebugPS/ 45 | [Rr]eleasePS/ 46 | dlldata.c 47 | 48 | # Benchmark Results 49 | BenchmarkDotNet.Artifacts/ 50 | 51 | # .NET Core 52 | project.lock.json 53 | project.fragment.lock.json 54 | artifacts/ 55 | **/Properties/launchSettings.json 56 | 57 | # StyleCop 58 | StyleCopReport.xml 59 | 60 | # Files built by Visual Studio 61 | *_i.c 62 | *_p.c 63 | *_i.h 64 | *.ilk 65 | *.meta 66 | *.obj 67 | *.iobj 68 | *.pch 69 | *.pdb 70 | *.ipdb 71 | *.pgc 72 | *.pgd 73 | *.rsp 74 | *.sbr 75 | *.tlb 76 | *.tli 77 | *.tlh 78 | *.tmp 79 | *.tmp_proj 80 | *.log 81 | *.vspscc 82 | *.vssscc 83 | .builds 84 | *.pidb 85 | *.svclog 86 | *.scc 87 | 88 | # Chutzpah Test files 89 | _Chutzpah* 90 | 91 | # Visual C++ cache files 92 | ipch/ 93 | *.aps 94 | *.ncb 95 | *.opendb 96 | *.opensdf 97 | *.sdf 98 | *.cachefile 99 | *.VC.db 100 | *.VC.VC.opendb 101 | 102 | # Visual Studio profiler 103 | *.psess 104 | *.vsp 105 | *.vspx 106 | *.sap 107 | 108 | # Visual Studio Trace Files 109 | *.e2e 110 | 111 | # TFS 2012 Local Workspace 112 | $tf/ 113 | 114 | # Guidance Automation Toolkit 115 | *.gpState 116 | 117 | # ReSharper is a .NET coding add-in 118 | _ReSharper*/ 119 | *.[Rr]e[Ss]harper 120 | *.DotSettings.user 121 | 122 | # JustCode is a .NET coding add-in 123 | .JustCode 124 | 125 | # TeamCity is a build add-in 126 | _TeamCity* 127 | 128 | # DotCover is a Code Coverage Tool 129 | *.dotCover 130 | 131 | # AxoCover is a Code Coverage Tool 132 | .axoCover/* 133 | !.axoCover/settings.json 134 | 135 | # Visual Studio code coverage results 136 | *.coverage 137 | *.coveragexml 138 | 139 | # NCrunch 140 | _NCrunch_* 141 | .*crunch*.local.xml 142 | nCrunchTemp_* 143 | 144 | # MightyMoose 145 | *.mm.* 146 | AutoTest.Net/ 147 | 148 | # Web workbench (sass) 149 | .sass-cache/ 150 | 151 | # Installshield output folder 152 | [Ee]xpress/ 153 | 154 | # DocProject is a documentation generator add-in 155 | DocProject/buildhelp/ 156 | DocProject/Help/*.HxT 157 | DocProject/Help/*.HxC 158 | DocProject/Help/*.hhc 159 | DocProject/Help/*.hhk 160 | DocProject/Help/*.hhp 161 | DocProject/Help/Html2 162 | DocProject/Help/html 163 | 164 | # Click-Once directory 165 | publish/ 166 | 167 | # Publish Web Output 168 | *.[Pp]ublish.xml 169 | *.azurePubxml 170 | # Note: Comment the next line if you want to checkin your web deploy settings, 171 | # but database connection strings (with potential passwords) will be unencrypted 172 | *.pubxml 173 | *.publishproj 174 | 175 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 176 | # checkin your Azure Web App publish settings, but sensitive information contained 177 | # in these scripts will be unencrypted 178 | PublishScripts/ 179 | 180 | # NuGet Packages 181 | *.nupkg 182 | # The packages folder can be ignored because of Package Restore 183 | **/[Pp]ackages/* 184 | # except build/, which is used as an MSBuild target. 185 | !**/[Pp]ackages/build/ 186 | # Uncomment if necessary however generally it will be regenerated when needed 187 | #!**/[Pp]ackages/repositories.config 188 | # NuGet v3's project.json files produces more ignorable files 189 | *.nuget.props 190 | *.nuget.targets 191 | 192 | # Microsoft Azure Build Output 193 | csx/ 194 | *.build.csdef 195 | 196 | # Microsoft Azure Emulator 197 | ecf/ 198 | rcf/ 199 | 200 | # Windows Store app package directories and files 201 | AppPackages/ 202 | BundleArtifacts/ 203 | Package.StoreAssociation.xml 204 | _pkginfo.txt 205 | *.appx 206 | 207 | # Visual Studio cache files 208 | # files ending in .cache can be ignored 209 | *.[Cc]ache 210 | # but keep track of directories ending in .cache 211 | !*.[Cc]ache/ 212 | 213 | # Others 214 | ClientBin/ 215 | ~$* 216 | *~ 217 | *.dbmdl 218 | *.dbproj.schemaview 219 | *.jfm 220 | *.pfx 221 | *.publishsettings 222 | orleans.codegen.cs 223 | 224 | # Including strong name files can present a security risk 225 | # (https://github.com/github/gitignore/pull/2483#issue-259490424) 226 | #*.snk 227 | 228 | # Since there are multiple workflows, uncomment next line to ignore bower_components 229 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 230 | #bower_components/ 231 | 232 | # RIA/Silverlight projects 233 | Generated_Code/ 234 | 235 | # Backup & report files from converting an old project file 236 | # to a newer Visual Studio version. Backup files are not needed, 237 | # because we have git ;-) 238 | _UpgradeReport_Files/ 239 | Backup*/ 240 | UpgradeLog*.XML 241 | UpgradeLog*.htm 242 | ServiceFabricBackup/ 243 | *.rptproj.bak 244 | 245 | # SQL Server files 246 | *.mdf 247 | *.ldf 248 | *.ndf 249 | 250 | # Business Intelligence projects 251 | *.rdl.data 252 | *.bim.layout 253 | *.bim_*.settings 254 | *.rptproj.rsuser 255 | 256 | # Microsoft Fakes 257 | FakesAssemblies/ 258 | 259 | # GhostDoc plugin setting file 260 | *.GhostDoc.xml 261 | 262 | # Node.js Tools for Visual Studio 263 | .ntvs_analysis.dat 264 | node_modules/ 265 | 266 | # Visual Studio 6 build log 267 | *.plg 268 | 269 | # Visual Studio 6 workspace options file 270 | *.opt 271 | 272 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) 273 | *.vbw 274 | 275 | # Visual Studio LightSwitch build output 276 | **/*.HTMLClient/GeneratedArtifacts 277 | **/*.DesktopClient/GeneratedArtifacts 278 | **/*.DesktopClient/ModelManifest.xml 279 | **/*.Server/GeneratedArtifacts 280 | **/*.Server/ModelManifest.xml 281 | _Pvt_Extensions 282 | 283 | # Paket dependency manager 284 | .paket/paket.exe 285 | paket-files/ 286 | 287 | # FAKE - F# Make 288 | .fake/ 289 | 290 | # JetBrains Rider 291 | .idea/ 292 | *.sln.iml 293 | 294 | # CodeRush 295 | .cr/ 296 | 297 | # Python Tools for Visual Studio (PTVS) 298 | __pycache__/ 299 | *.pyc 300 | 301 | # Cake - Uncomment if you are using it 302 | # tools/** 303 | # !tools/packages.config 304 | 305 | # Tabs Studio 306 | *.tss 307 | 308 | # Telerik's JustMock configuration file 309 | *.jmconfig 310 | 311 | # BizTalk build output 312 | *.btp.cs 313 | *.btm.cs 314 | *.odx.cs 315 | *.xsd.cs 316 | 317 | # OpenCover UI analysis results 318 | OpenCover/ 319 | 320 | # Azure Stream Analytics local run output 321 | ASALocalRun/ 322 | 323 | # MSBuild Binary and Structured Log 324 | *.binlog 325 | 326 | # NVidia Nsight GPU debugger configuration file 327 | *.nvuser 328 | 329 | # MFractors (Xamarin productivity tool) working folder 330 | .mfractor/ 331 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 netnr 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # KMS 2 | KMS 激活服务,slmgr 命令激活 Windows 系统、Office 3 | 4 | ### 激活步骤(管理员命令执行) 5 | 1. 设置服务 `slmgr -skms skms.netnr.eu.org` 6 | 2. 安装密钥 `slmgr -ipk 版本对应秘钥` 7 | 3. 激活系统 `slmgr -ato` 8 | 9 | ### 可用服务 10 | - `skms.netnr.eu.org` 维护 **CNAME** 指向有效的服务 11 | 12 | + `telnet skms.netnr.eu.org 1688` 测试服务是否可用 13 | + `tcping skms.netnr.eu.org 1688` 14 | 15 | ### 安装服务 16 | - ref: 17 | - Windows:[vlmcs-Windows](https://gs.zme.ink/static/app/vlmcs-Windows.zip) 18 | 19 | ### 安装服务(Linux) 20 | ``` 21 | # 一键安装脚本 22 | wget --no-check-certificate https://raw.githubusercontent.com/teddysun/across/master/kms.sh && chmod +x kms.sh && ./kms.sh 23 | 24 | netstat -nxtlp | grep 1688 # 查看端口 25 | /etc/init.d/kms status # 状态 26 | /etc/init.d/kms start # 启动 27 | /etc/init.d/kms stop # 停止 28 | /etc/init.d/kms restart # 重启 29 | ./kms.sh uninstall # 卸载 30 | ``` 31 | 32 | 33 | ### 密钥 34 | 35 | 36 | [kms-client-activation-keys.md](https://github.com/MicrosoftDocs/windowsserverdocs/blob/main/WindowsServerDocs/get-started/kms-client-activation-keys.md) 37 | 38 | ### Windows Server(LTSC 版本) 39 | 40 | #### Windows Server 2025 41 | 42 | 操作系统版本 | KMS 客户端安装密钥 43 | --- | --- 44 | Windows Server 2025 Standard | TVRH6-WHNXV-R9WG3-9XRFY-MY832 45 | Windows Server 2025 Datacenter | D764K-2NDRG-47T6Q-P8T8W-YP6DF 46 | Windows Server 2025 Datacenter: Azure Edition | XGN3F-F394H-FD2MY-PP6FD-8MCRC 47 | 48 | #### Windows Server 2022 49 | 50 | 操作系统版本 | KMS 客户端安装密钥 51 | --- | --- 52 | Windows Server 2022 Standard | VDYBN-27WPP-V4HQT-9VMD4-VMK7H 53 | Windows Server 2022 Datacenter | WX4NM-KYWYW-QJJR4-XV3QB-6VM33 54 | Windows Server 2022 Datacenter: Azure Edition | NTBV8-9K7Q8-V27C6-M2BTV-KHMXV 55 | 56 | #### Windows Server 2019 57 | 58 | 操作系统版本 | KMS 客户端安装密钥 59 | --- | --- 60 | Windows Server 2019 Standard | N69G4-B89J2-4G8F4-WWYCC-J464C 61 | Windows Server 2019 Datacenter | WMDGN-G9PQG-XVVXX-R3X43-63DFG 62 | Windows Server 2019 Essentials | WVDHN-86M7X-466P6-VHXV7-YY726 63 | 64 | #### Windows Server 2016 65 | 66 | 操作系统版本 | KMS 客户端安装密钥 67 | --- | --- 68 | Windows Server 2016 Standard | WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY 69 | Windows Server 2016 Datacenter | CB7KF-BWN84-R7R2Y-793K2-8XDDG 70 | Windows Server 2016 Essentials | JCKRF-N37P4-C2D82-9YXRT-4M63B 71 | 72 | ### Windows Server (半年频道版本) 73 | 74 | #### Windows Server 版本 20H2、2004、1909、1903 和 1809 75 | 76 | 操作系统版本 | KMS 客户端安装密钥 77 | --- | --- 78 | Windows Server Standard | N2KJX-J94YW-TQVFB-DG9YT-724CC 79 | Windows Server Datacenter | 6NMRW-2C8FM-D24W7-TQWMY-CWH2D 80 | 81 | ### Windows 11 和 Windows 10 (半年频道版本) 82 | 83 | 操作系统版本 | KMS 客户端安装密钥 84 | --- | --- 85 | Windows 10/11 专业版 | W269N-WFGWX-YVC9B-4J6C9-T83GX 86 | Windows 10/11 专业版 N | MH37W-N47XK-V7XM9-C7227-GCQG9 87 | Windows 10/11 专业工作站 | NRG8B-VKK3Q-CXVCJ-9G2XF-6Q84J 88 | Windows 10/11 专业工作站 N | 9FNHH-K3HBT-3W4TD-6383H-6XYWF 89 | Windows 10/11 专业教育版 | 6TP4R-GNPTD-KYYHQ-7B7DP-J447Y 90 | Windows 10/11 专业教育版 N | YVWGF-BXNMC-HTQYQ-CPQ99-66QFC 91 | Windows 10/11 教育版 | NW6C2-QMPVW-D7KKK-3GKT6-VCFB2 92 | Windows 10/11 教育版 N | 2WH4N-8QGBV-H22JP-CT43Q-MDWWJ 93 | Windows 10/11 企业版 | NPPR9-FWDCX-D2C8J-H872K-2YT43 94 | Windows 10/11 企业版 N | DPH2V-TTNVB-4X9Q3-TJR4H-KHJW4 95 | Windows 10/11 企业版 G | YYVX9-NTFWV-6MDM3-9PT4T-4M68B 96 | Windows 10/11 企业版 G N | 44RPN-FTY23-9VTTB-MP9BX-T84FV 97 | 98 | ### Windows 10 (LTSC/LTSB 版本) 99 | 100 | #### Windows 10 LTSC 2019 101 | 102 | 操作系统版本 | KMS 客户端安装密钥 103 | --- | --- 104 | Windows 10 企业版 LTSC 2019 | M7XTQ-FN8P6-TTKYV-9D4CC-J462D 105 | Windows 10 企业版 N LTSC 2019 | 92NFX-8DJQP-P6BBQ-THF9C-7CG2H 106 | 107 | #### Windows 10 LTSB 2016 108 | 109 | 操作系统版本 | KMS 客户端安装密钥 110 | --- | --- 111 | Windows 10 企业版 LTSB 2016 | DCPHK-NFMTC-H88MJ-PFHPY-QJ4BJ 112 | Windows 10 企业版 N LTSB 2016 | QFFDN-GRT3P-VKWWX-X7T3R-8B639 113 | 114 | #### Windows 10 LTSB 2015 115 | 116 | 操作系统版本 | KMS 客户端安装密钥 117 | --- | --- 118 | Windows 10 企业版 2015 LTSB | WNMTR-4C88C-JK8YV-HQ7T2-76DF9 119 | Windows 10 企业版 2015 LTSB N | 2F77B-TNFGY-69QQF-B8YKP-D69TJ 120 | 121 | ### 早期版本的 Windows Server 122 | 123 | #### Windows Server 版本 1803 124 | 125 | 操作系统版本 | KMS 客户端安装密钥 126 | --- | --- 127 | Windows Server Standard | PTXN8-JFHJM-4WC78-MPCBR-9W4KR 128 | Windows Server Datacenter | 2HXDN-KRXHB-GPYC7-YCKFJ-7FVDG 129 | 130 | #### Windows Server 版本 1709 131 | 132 | 操作系统版本 | KMS 客户端安装密钥 133 | --- | --- 134 | Windows Server Standard | DPCNP-XQFKJ-BJF7R-FRC8D-GF6G4 135 | Windows Server Datacenter | 6Y6KB-N82V8-D8CQV-23MJW-BWTG6 136 | 137 | #### Windows Server 2012 R2 138 | 139 | 操作系统版本 | KMS 客户端安装密钥 140 | --- | --- 141 | Windows Server 2012 R2 Standard | D2N9P-3P6X9-2R39C-7RTCD-MDVJX 142 | Windows Server 2012 R2 Datacenter | W3GGN-FT8W3-Y4M27-J84CP-Q3VJ9 143 | Windows Server 2012 R2 Essentials | KNC87-3J2TX-XB4WP-VCPJV-M4FWM 144 | 145 | #### Windows Server 2012 146 | 147 | 操作系统版本 | KMS 客户端安装密钥 148 | --- | --- 149 | Windows Server 2012 | BN3D2-R7TKB-3YPBD-8DRP2-27GG4 150 | Windows Server 2012 N | 8N2M2-HWPGY-7PGT9-HGDD8-GVGGY 151 | Windows Server 2012 单语言版 | 2WN2H-YGCQR-KFX6K-CD6TF-84YXQ 152 | Windows Server 2012 特定国家/地区版 | 4K36P-JN4VD-GDC6V-KDT89-DYFKP 153 | Windows Server 2012 Server Standard | XC9B7-NBPP2-83J2H-RHMBY-92BT4 154 | Windows Server 2012 MultiPoint Standard | HM7DN-YVMH3-46JC3-XYTG7-CYQJJ 155 | Windows Server 2012 MultiPoint Premium | XNH6W-2V9GX-RGJ4K-Y8X6F-QGJ2G 156 | Windows Server 2012 Datacenter | 48HP8-DN98B-MYWDG-T2DCC-8W83P 157 | 158 | #### Windows Server 2008 R2 159 | 160 | 操作系统版本 | KMS 客户端安装密钥 161 | --- | --- 162 | Windows Server 2008 R2 Web 版 | 6TPJF-RBVHG-WBW2R-86QPH-6RTM4 163 | Windows Server 2008 R2 HPC 版 | TT8MH-CG224-D3D7Q-498W2-9QCTX 164 | WindowsServer 2008 R2 Standard | YC6KT-GKW9T-YTKYR-T4X34-R7VHC 165 | WindowsServer 2008 R2 企业版 | 489J6-VHDMP-X63PK-3K798-CPX3Y 166 | WindowsServer 2008 R2 Datacenter | 74YFP-3QFB3-KQT8W-PMXWJ-7M648 167 | 面向基于 Itanium 系统的 Windows Server 2008 R2 | GT63C-RJFQ3-4GMB6-BRFB9-CB83V 168 | 169 | #### Windows Server 2008 170 | 171 | 操作系统版本 | KMS 客户端安装密钥 172 | --- | --- 173 | Windows Web Server 2008 | WYR28-R7TFJ-3X2YQ-YCY4H-M249D 174 | Windows Server 2008 Standard | TM24T-X9RMF-VWXK6-X8JC9-BFGM2 175 | 不带 Hyper-V 的 Windows Server 2008 Standard | W7VD6-7JFBR-RX26B-YKQ3Y-6FFFJ 176 | Windows Server 2008 企业版 | YQGMW-MPWTJ-34KDK-48M3W-X4Q6V 177 | 不带 Hyper-V 的 Windows Server 2008 企业版 | 39BXF-X8Q23-P2WWT-38T2F-G3FPG 178 | Windows Server 2008 HPC | RCTX3-KWVHP-BR6TB-RB6DM-6X7HP 179 | Windows Server 2008 Datacenter | 7M67G-PC374-GR742-YH8V4-TCBY3 180 | 不带 Hyper-V 的 Windows Server 2008 Datacenter | 22XQ2-VRXRG-P8D42-K34TD-G3QQC 181 | 面向基于 Itanium 系统的 Windows Server 2008 | 4DWFP-JF3DJ-B7DTH-78FJB-PDRHK 182 | 183 | ### 早期版本的 Windows 184 | 185 | #### Windows 8.1 186 | 187 | 操作系统版本 | KMS 客户端安装密钥 188 | --- | --- 189 | Windows 8.1 专业版 | GCRJD-8NW9H-F2CDX-CCM8D-9D6T9 190 | Windows 8.1 专业版 N | HMCNV-VVBFX-7HMBH-CTY9B-B4FXY 191 | Windows 8.1 企业版 | MHF9N-XY6XB-WVXMC-BTDCT-MKKG7 192 | Windows 8.1 企业版 N | TT4HM-HN7YT-62K67-RGRQJ-JFFXW 193 | 194 | #### Windows 8 195 | 196 | 操作系统版本 | KMS 客户端安装密钥 197 | --- | --- 198 | Windows 8 专业版 | NG4HW-VH26C-733KW-K6F98-J8CK4 199 | Windows 8 专业版 N | XCVCF-2NXM9-723PB-MHCB7-2RYQQ 200 | Windows 8 企业版 | 32JNW-9KQ84-P47T8-D8GGY-CWCK7 201 | Windows 8 企业版 N | JMNMF-RHW7P-DMY6X-RF3DR-X2BQT 202 | 203 | #### Windows 7 204 | 205 | 操作系统版本 | KMS 客户端安装密钥 206 | --- | --- 207 | Windows 7 专业版 | FJ82H-XT6CR-J8D7P-XQJJ2-GPDD4 208 | Windows 7 专业版 N | MRPKT-YTG23-K7D7T-X2JMM-QY7MG 209 | Windows 7 专业版 E | W82YF-2Q76Y-63HXB-FGJG9-GF7QX 210 | Windows7 企业版 | 33PXH-7Y6KF-2VJC9-XBBR8-HVTHH 211 | Windows 7 企业版 N | YDRBP-3D83W-TY26F-D46B2-XCKRJ 212 | Windows 7 企业版 E | C29WB-22CC8-VJ326-GHFJW-H9DH4 213 | 214 | ### 激活说明 215 | - KMS 激活有 180 天期限,此期限称为激活有效间隔 216 | - 若要保持激活状态,您的系统必须通过至少每 180 天连接一次 KMS 服务器来续订激活 217 | - 默认情况下,系统每 7 天自动进行一次激活续订尝试 218 | - 在续订客户端激活之后,激活有效间隔重新开始 219 | - 综上所述,只要您不超过 180 天以上无法连接互联网,系统会自行续期保持激活状态 220 | 221 | ---------- 222 | ### Office(VOL 版本)激活步骤(管理员命令执行) 223 | 1. 进入安装目录 `cd "C:\Program Files (x86)\Microsoft Office\Office16"` 224 | - 32 位默认一般为 `C:\Program Files (x86)\Microsoft Office\Office16` 225 | - 64 位默认一般为 `C:\Program Files\Microsoft Office\Office16` 226 | - **Office16** 是 **Office 2016** 227 | - **Office15** 是 **Office 2013** 228 | - **Office14** 是 **Office 2010** 229 | - 打开以上所说的目录,应该有个 `OSPP.VBS` 文件 230 | 2. 注册 KMS 服务 `cscript ospp.vbs /sethst:skms.netnr.eu.org` 231 | 3. 激活 Office `cscript ospp.vbs /act` 232 | 233 | ### Office 密钥列表 234 | - 235 | 236 | ### More 237 | - 238 | - 239 | - 240 | - -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netnr/kms/4ba29cffa0e8ed3730d1d618dc52b2d0e5cc182e/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | KMS 10 | 11 | 20 | 29 | 30 | 31 | 32 | 33 | 34 | 39 | 40 | 41 |
42 | 43 | 44 | 45 | 76 | 77 | 78 | 79 | 80 | --------------------------------------------------------------------------------