-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKMS-Client.bat
307 lines (264 loc) · 11.3 KB
/
KMS-Client.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
@echo off
:checkPrivileges
REM Checking for Admin
NET FILE 1>NUL 2>NUL
if '%errorlevel%' == '0' ( goto gotPrivileges ) else ( goto getPrivileges )
:getPrivileges
if '%1'=='ELEV' (echo ELEV & shift /1 & goto gotPrivileges)
setlocal DisableDelayedExpansion
set "batchPath=%~0"
setlocal EnableDelayedExpansion
ECHO Set UAC = CreateObject^("Shell.Application"^) > "%temp%\OEgetPrivileges.vbs"
ECHO args = "ELEV " >> "%temp%\OEgetPrivileges.vbs"
ECHO For Each strArg in WScript.Arguments >> "%temp%\OEgetPrivileges.vbs"
ECHO args = args ^& strArg ^& " " >> "%temp%\OEgetPrivileges.vbs"
ECHO Next >> "%temp%\OEgetPrivileges.vbs"
ECHO UAC.ShellExecute "!batchPath!", args, "", "runas", 1 >> "%temp%\OEgetPrivileges.vbs"
"%SystemRoot%\System32\WScript.exe" "%temp%\OEgetPrivileges.vbs" %*
exit /B
:gotPrivileges
:askServer
REM Ask for KMS
echo.
echo.=================================================================================
echo.=========================== DALEKS KMS-CLIENT - v1.1 - 2021 ==============
echo.=================================================================================
echo.===========================https://github.com/Strange-Panda/KMS-Client=============
echo.=================================================================================
echo.
echo.
set /p server=Please enter the IP or Hostname of the desired KMS:
:gotServer
:choice
echo.
echo.=================================================================================
echo.=========================== DALEKS KMS-CLIENT - v1.1 - 2021 ==============
echo.=================================================================================
echo.===========================https://github.com/Strange-Panda/KMS-Client=============
echo.=================================================================================
echo.
echo.
echo 1 = WIN 10 Pro
echo.
echo 2 = WIN SRV 2019 Standard
echo 3 = WIN SRV 2019 Datacenter
echo.
echo 4 = WIN SRV 2016 Standard
echo 5 = WIN SRV 2016 Datacenter
echo 6 = WIN SRV 2016 Essentials
echo.
echo 7 = WIN SRV 2012 R2 Standard
echo 8 = WIN SRV 2012 R2 Datacenter
echo 9 = WIN SRV 2012 R2 Essentials
echo.
echo 10 = EXIT"
echo.
set /P c=Select a Number:
if /I "%c%" EQU "1" goto :movespot1
if /I "%c%" EQU "2" goto :movespot2
if /I "%c%" EQU "3" goto :movespot3
if /I "%c%" EQU "4" goto :movespot4
if /I "%c%" EQU "5" goto :movespot5
if /I "%c%" EQU "6" goto :movespot6
if /I "%c%" EQU "7" goto :movespot7
if /I "%c%" EQU "8" goto :movespot8
if /I "%c%" EQU "9" goto :movespot9
if /I "%c%" EQU "10" goto :exitspot
goto :choice
:movespot1
echo.=================================================================================
echo.===========================Trying my best... Please Wait!========================
echo.=================================================================================
echo.===========================This Will take 1 or 2 Minutes!========================
echo.=================================================================================
echo.=========================Take a look at www.opendemocracy.net====================
echo.=================================================================================
REM SET KMS KEY
slmgr.vbs //B /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX
REM Set KMS
slmgr.vbs //B /skms %server%
REM Activate
slmgr.vbs /ato
echo Goodbyes are not forever,
echo Goodbyes are not the end.
echo They simply mean I’ll miss you,
echo Until we meet again.
echo Pause. >nul | echo. Press a Key to Exit...
@start https://www.opendemocracy.net
exit
:movespot2
echo.=================================================================================
echo.===========================Trying my best... Please Wait!========================
echo.=================================================================================
echo.===========================This Will take 1 or 2 Minutes...======================
echo.=================================================================================
echo.=========================Take a look at www.opendemocracy.net====================
echo.=================================================================================
REM SET KMS KEY
slmgr.vbs //B /ipk N69G4-B89J2-4G8F4-WWYCC-J464C
REM Set KMS
slmgr.vbs //B /skms %server%
REM Activate
slmgr.vbs /ato
echo Goodbyes are not forever,
echo Goodbyes are not the end.
echo They simply mean I’ll miss you,
echo Until we meet again.
echo Pause. >nul | echo. Press a Key to Exit...
@start https://www.opendemocracy.net
exit
:movespot3
echo.=================================================================================
echo.===========================Trying my best... Please Wait!========================
echo.=================================================================================
echo.===========================This Will take 1 or 2 Minutes...======================
echo.=================================================================================
echo.=========================Take a look at www.opendemocracy.net====================
echo.=================================================================================
REM SET KMS KEY
slmgr.vbs //B /ipk WMDGN-G9PQG-XVVXX-R3X43-63DFG
REM Set KMS
slmgr.vbs //B /skms %server%
REM Activate
slmgr.vbs /ato
echo Goodbyes are not forever,
echo Goodbyes are not the end.
echo They simply mean I’ll miss you,
echo Until we meet again.
echo Pause. >nul | echo. Press a Key to Exit...
@start https://www.opendemocracy.net
exit
:movespot4
echo.=================================================================================
echo.===========================Trying my best... Please Wait!========================
echo.=================================================================================
echo.===========================This Will take 1 or 2 Minutes...======================
echo.=================================================================================
echo.=========================Take a look at www.opendemocracy.net====================
echo.=================================================================================
REM SET KMS KEY
slmgr.vbs //B /ipk WC2BQ-8NRM3-FDDYY-2BFGV-KHKQY
REM Set KMS
slmgr.vbs //B /skms %server%
REM Activate
slmgr.vbs /ato
echo Goodbyes are not forever,
echo Goodbyes are not the end.
echo They simply mean I’ll miss you,
echo Until we meet again.
echo Pause. >nul | echo. Press a Key to Exit...
@start https://www.opendemocracy.net
exit
:movespot5
echo.=================================================================================
echo.===========================Trying my best... Please Wait!========================
echo.=================================================================================
echo.===========================This Will take 1 or 2 Minutes...======================
echo.=================================================================================
echo.=========================Take a look at www.opendemocracy.net====================
echo.=================================================================================
REM SET KMS KEY
slmgr.vbs //B /ipk CB7KF-BWN84-R7R2Y-793K2-8XDDG
REM Set KMS
slmgr.vbs //B /skms %server%
REM Activate
slmgr.vbs /ato
echo Goodbyes are not forever,
echo Goodbyes are not the end.
echo They simply mean I’ll miss you,
echo Until we meet again.
echo Pause. >nul | echo. Press a Key to Exit...
@start https://www.opendemocracy.net
exit
:movespot6
echo.=================================================================================
echo.===========================Trying my best... Please Wait!========================
echo.=================================================================================
echo.===========================This Will take 1 or 2 Minutes...======================
echo.=================================================================================
echo.=========================Take a look at www.opendemocracy.net====================
echo.=================================================================================
REM SET KMS KEY
slmgr.vbs //B /ipk JCKRF-N37P4-C2D82-9YXRT-4M63B
REM Set KMS
slmgr.vbs //B /skms %server%
REM Activate
slmgr.vbs /ato
echo Goodbyes are not forever,
echo Goodbyes are not the end.
echo They simply mean I’ll miss you,
echo Until we meet again.
echo Pause. >nul | echo. Press a Key to Exit...
@start https://www.opendemocracy.net
exit
:movespot7
echo.=================================================================================
echo.===========================Trying my best... Please Wait!========================
echo.=================================================================================
echo.===========================This Will take 1 or 2 Minutes...======================
echo.=================================================================================
echo.=========================Take a look at www.opendemocracy.net====================
echo.=================================================================================
REM SET KMS KEY
slmgr.vbs //B /ipk D2N9P-3P6X9-2R39C-7RTCD-MDVJX
REM Set KMS
slmgr.vbs //B /skms %server%
REM Activate
slmgr.vbs /ato
echo Goodbyes are not forever,
echo Goodbyes are not the end.
echo They simply mean I’ll miss you,
echo Until we meet again.
echo Pause. >nul | echo. Press a Key to Exit...
@start https://www.opendemocracy.net
exit
:movespot8
echo.=================================================================================
echo.===========================Trying my best... Please Wait!========================
echo.=================================================================================
echo.===========================This Will take 1 or 2 Minutes...======================
echo.=================================================================================
echo.=========================Take a look at www.opendemocracy.net====================
echo.=================================================================================
REM SET KMS KEY
slmgr.vbs //B /ipk W3GGN-FT8W3-Y4M27-J84CP-Q3VJ9
REM Set KMS
slmgr.vbs //B /skms %server%
REM Activate
slmgr.vbs /ato
echo Goodbyes are not forever,
echo Goodbyes are not the end.
echo They simply mean I’ll miss you,
echo Until we meet again.
echo Pause. >nul | echo. Press a Key to Exit...
@start https://www.opendemocracy.net
exit
:movespot9
echo.=================================================================================
echo.===========================Trying my best... Please Wait!========================
echo.=================================================================================
echo.===========================This Will take 1 or 2 Minutes...======================
echo.=================================================================================
echo.=========================Take a look at www.opendemocracy.net====================
echo.=================================================================================
REM SET KMS KEY
slmgr.vbs //B /ipk KNC87-3J2TX-XB4WP-VCPJV-M4FWM
REM Set KMS
slmgr.vbs //B /skms %server%
REM Activate
slmgr.vbs /ato
echo Goodbyes are not forever,
echo Goodbyes are not the end.
echo They simply mean I’ll miss you,
echo Until we meet again.
echo Pause. >nul | echo. Press a Key to Exit...
@start https://www.opendemocracy.net
exit
:exitspot
echo Goodbyes are not forever,
echo Goodbyes are not the end.
echo They simply mean I’ll miss you,
echo Until we meet again.
echo Pause. >nul | echo. Press a Key to Exit...
@start https://www.opendemocracy.net
exit