-
Notifications
You must be signed in to change notification settings - Fork 21
/
Mondo,2021,2019,2016.cmd
2093 lines (1761 loc) · 89.6 KB
/
Mondo,2021,2019,2016.cmd
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@echo off
color F0
mode con cols=98 lines=40
title Activate Office 365 Mondo, 2024, 2021, 2019, 2016, 2013, 2010 - https://github.com/BsNgChiThanh
setlocal EnableExtensions EnableDelayedExpansion
:======================================================================================================================================================
:MAINMENU
cls
mode con cols=98 lines=40
echo.
echo. BSCK1. NGUYEN CHI THANH
echo. _________________________________________________________
echo. ^| - Office 365: ^|
Echo. ^| [A] 365 Mondo ^|
Echo. ^| - Office 2024: ^|
Echo. ^| [B] Office 2024 Prolus ^|
Echo. ^| [C] Office 2024 Project ^|
Echo. ^| [D] Office 2024 Visio ^|
Echo. ^| - Office 2021: ^|
Echo. ^| [E] Office 2021 Prolus ^|
Echo. ^| [F] Office 2021 Project ^|
Echo. ^| [G] Office 2021 Visio ^|
Echo. ^| - Office 2019: ^|
Echo. ^| [H] Office 2019 Prolus ^|
Echo. ^| [I] Office 2019 Project ^|
Echo. ^| [J] Office 2019 Visio ^|
Echo. ^| - Office 2016: ^|
Echo. ^| [K] Office 2016 Prolus ^|
Echo. ^| [L] Office 2016 Project ^|
Echo. ^| [M] Office 2016 Visio ^|
Echo. ^| - Office 2013: ^|
Echo. ^| [N] Office 2013 Prolus ^|
Echo. ^| [O] Office 2013 Project ^|
Echo. ^| [P] Office 2013 Visio ^|
Echo. ^| - Office 2010: ^|
Echo. ^| [Q] Office 2010 Prolus ^|
Echo. ^| [R] Office 2010 Project ^|
Echo. ^| [S] Office 2010 Visio ^|
Echo. ^| - Auto Renew (Tao tac vu gia han kich hoat) ^|
Echo. ^| [T] Gia han kich hoat vinh vien ^|
echo. ^| - Thoat: ^|
Echo. ^| [Z] Exit (Thoat) ^|
Echo. ^|_________________________________________________________^|
ECHO.
Choice /N /C ABCDEFGHIJKLMNOPQRSTZ /M "* Nhap Lua Chon Cua Ban :
if ERRORLEVEL 25 goto :24 Z
if ERRORLEVEL 24 goto :23 Y
if ERRORLEVEL 23 goto :22 X
if ERRORLEVEL 22 goto :21 W
if ERRORLEVEL 21 goto :20 V
if ERRORLEVEL 20 goto :19 T
if ERRORLEVEL 19 goto :18 S
if ERRORLEVEL 18 goto :17 R
if ERRORLEVEL 17 goto :16 Q
if ERRORLEVEL 16 goto :15 P
if ERRORLEVEL 15 goto :14 O
if ERRORLEVEL 14 goto :13 N
if ERRORLEVEL 13 goto :12 M
if ERRORLEVEL 12 goto :11 L
if ERRORLEVEL 11 goto :10 K
if ERRORLEVEL 10 goto :9 J
if ERRORLEVEL 9 goto :8 I
if ERRORLEVEL 8 goto :7 H
if ERRORLEVEL 7 goto :6 G
if ERRORLEVEL 6 goto :5 F
if ERRORLEVEL 5 goto :4 E
if ERRORLEVEL 4 goto :3 D
if ERRORLEVEL 3 goto :2 C
if ERRORLEVEL 2 goto :1 B
if ERRORLEVEL 1 goto :0 A
:=====================================================================================
:24
cls
echo.
echo.
echo.
echo.
echo. Kich hoat moi windows va Office vinh vien bang MAS Tools
start https://github.com/BsNgChiThanh/MAS-TOOL
pause > nul
exit
:=====================================================================================
:0
cls
color F0
mode con cols=98 lines=30
echo Activating your Microsft Office 365 Mondo...
(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")
(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")
(for /f %%x in ('dir /b ..\root\Licenses16\MondoVL_KMS_Client-ppd.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\MondoVL_KMS_Client-ul-oob.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\MondoVL_KMS_Client-ul.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\MondoVL_MAK-pl.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\MondoVL_MAK-ppd.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\MondoVL_MAK-ul-oob.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\MondoVL_MAK-ul-phn.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
cscript ospp.vbs /setprt:1688
cscript ospp.vbs /inpkey:DMTCJ-KNRKX-26982-JYCKT-P7KB6
cscript ospp.vbs /inpkey:HFTND-W9MK4-8B7MJ-B6C4G-XQBR2
cscript ospp.vbs /sethst:107.175.77.7
cscript ospp.vbs /sethst:172.16.0.2
cscript ospp.vbs /act
echo.
echo.
echo Bam phim bat ki de ve menu chinh
:notsupported
:halt
pause >nul
goto:MAINMENU
:=====================================================================================
:1
@echo off
title Activate Microsoft Office 2024 - https://github.com/BsNgChiThanh
cls
color F0
mode con cols=98 lines=30
echo Activating your Microsoft Office 2024...
(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")
(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")
(for /f %%x in ('dir /b ..\root\Licenses16\ProPlus2024VL_KMS*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
cscript ospp.vbs /setprt:1688
cscript ospp.vbs /inpkey:2TDPW-NDQ7G-FMG99-DXQ7M-TX3T2
cscript ospp.vbs /inpkey:VWCNX-7FKBD-FHJYG-XBR4B-88KC6
cscript ospp.vbs /sethst:107.175.77.7
cscript ospp.vbs /sethst:172.16.0.2
cscript ospp.vbs /act
echo.
echo.
echo Nhan phim bat ky de thoat.
:end
:notsupported
:halt
pause >nul
goto:MAINMENU
:=====================================================================================
:2
@echo off
title Activate Microsoft Project 2024 (ALL versions) for FREE - https://github.com/BsNgChiThanh
cls
color F0
mode con cols=98 lines=30
echo Activating Microsoft Project Pro 2024...
(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")
(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")
cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\pkeyconfig-office.xrm-ms" >nul
(for /f %%x in ('dir /b ..\root\Licenses16\client-issuance*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\projectprovl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\projectpro2024vl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
cscript ospp.vbs /setprt:1688
cscript ospp.vbs /inpkey:D9GTG-NP7DV-T6JP3-B6B62-JB89R
cscript ospp.vbs /inpkey:GNJ6P-Y4RBM-C32WW-2VJKJ-MTHKK
cscript ospp.vbs /sethst:107.175.77.7
cscript ospp.vbs /sethst:172.16.0.2
cscript ospp.vbs /act
echo.
echo.
echo Nhan phim bat ky de thoat.
:end
:notsupported
:halt
pause >nul
goto:MAINMENU
:=====================================================================================
:3
@echo off
title Activate Microsoft Visio 2024 for FREE - https://github.com/BsNgChiThanh
cls
color F0
mode con cols=98 lines=30
echo Activating Microsoft Visio 2024...
(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")
(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")
(cscript //nologo ospp.vbs /setprt:1688 >nul || goto wshdisabled)&cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\pkeyconfig-office.xrm-ms" >nul
(for /f %%x in ('dir /b ..\root\Licenses16\client-issuance*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\visioprovl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\visiopro2024vl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
cscript ospp.vbs /setprt:1688
cscript ospp.vbs /inpkey:YW66X-NH62M-G6YFP-B7KCT-WXGKQ
cscript ospp.vbs /inpkey:HGRBX-N68QF-6DY8J-CGX4W-XW7KP
cscript ospp.vbs /sethst:107.175.77.7
cscript ospp.vbs /sethst:172.16.0.2
cscript ospp.vbs /act
echo.
echo.
echo Nhan phim bat ky de thoat.
:end
:notsupported
:halt
pause >nul
goto:MAINMENU
:=====================================================================================
:4
@echo off
title Activate Microsoft Office 2021 - https://github.com/BsNgChiThanh
cls
color F0
mode con cols=98 lines=30
echo Activating your Microsoft Office 2021...
(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")
(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")
(for /f %%x in ('dir /b ..\root\Licenses16\ProPlus2021VL_KMS*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
script ospp.vbs /setprt:1688
cscript ospp.vbs /inpkey:FXYTK-NJJ8C-GB6DW-3DYQT-6F7TH
cscript ospp.vbs /inpkey:KDX7X-BNVR8-TXXGX-4Q7Y8-78VT3
cscript ospp.vbs /sethst:107.175.77.7
cscript ospp.vbs /sethst:172.16.0.2
cscript ospp.vbs /act
echo.
echo.
echo Nhan phim bat ky de thoat.
:end
:notsupported
:halt
pause >nul
goto:MAINMENU
:=====================================================================================
:5
@echo off
title Activate Microsoft Project 2021 (ALL versions) for FREE - https://github.com/BsNgChiThanh
cls
color F0
mode con cols=98 lines=30
echo Activating Microsoft Project Professional Plus 2021...
(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")
(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")
cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\pkeyconfig-office.xrm-ms" >nul
(for /f %%x in ('dir /b ..\root\Licenses16\client-issuance*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\projectprovl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\projectpro2021vl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
cscript ospp.vbs /setprt:1688
cscript ospp.vbs /inpkey:FTNWT-C6WBT-8HMGF-K9PRX-QV9H8
cscript ospp.vbs /inpkey:J2JDC-NJCYY-9RGQ4-YXWMH-T3D4T
cscript ospp.vbs /sethst:107.175.77.7
cscript ospp.vbs /sethst:172.16.0.2
cscript ospp.vbs /act
echo.
echo.
echo Nhan phim bat ky de thoat.
:end
:notsupported
:halt
pause >nul
goto:MAINMENU
:=====================================================================================
:6
@echo off
title Activate Microsoft Visio 2021 for FREE - https://github.com/BsNgChiThanh
cls
color F0
mode con cols=98 lines=30
echo Activating Microsoft Visio 2021...
(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")
(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")
(cscript //nologo ospp.vbs /setprt:1688 >nul || goto wshdisabled)&cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\pkeyconfig-office.xrm-ms" >nul
(for /f %%x in ('dir /b ..\root\Licenses16\client-issuance*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\visioprovl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\visiopro2021vl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
cscript ospp.vbs /setprt:1688
cscript ospp.vbs /inpkey:KNH8D-FGHT4-T8RK3-CTDYJ-K2HT4
cscript ospp.vbs /inpkey:MJVNY-BYWPY-CWV6J-2RKRT-4M8QG
cscript ospp.vbs /sethst:107.175.77.7
cscript ospp.vbs /sethst:172.16.0.2
cscript ospp.vbs /act
echo.
echo.
echo Nhan phim bat ky de thoat.
:end
:notsupported
:halt
pause >nul
goto:MAINMENU
:=====================================================================================
:7
@echo off
title Kich hoat Microsoft Office 2019 - https://github.com/BsNgChiThanh
cls
color F0
mode con cols=98 lines=30
echo Activating your Microsoft Office 2019...
(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")
(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")
(for /f %%x in ('dir /b ..\root\Licenses16\ProPlus2019VL*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\ProPlus2019VL*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
echo.
cscript ospp.vbs /setprt:1688
cscript ospp.vbs /inpkey:NMMKJ-6RK4F-KMJVX-8D9MJ-6MWKP
cscript ospp.vbs /inpkey:6NWWJ-YQWMR-QKGCB-6TMB3-9D9HK
cscript ospp.vbs /sethst:107.175.77.7
cscript ospp.vbs /sethst:172.16.0.2
cscript ospp.vbs /act
echo.
echo.
echo Nhan phim bat ky de thoat.
:end
:notsupported
:halt
pause >nul
goto:MAINMENU
:=====================================================================================
:8
@echo off
title Activate Microsoft Project 2019 (ALL versions) for FREE - https://github.com/BsNgChiThanh
cls
color F0
mode con cols=98 lines=30
echo Activating Microsoft Project Pro 2019...
(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")
(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")
cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\pkeyconfig-office.xrm-ms" >nul
(for /f %%x in ('dir /b ..\root\Licenses16\client-issuance*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\projectprovl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
cscript ospp.vbs /setprt:1688
cscript ospp.vbs /inpkey:B4NPR-3FKK7-T2MBV-FRQ4W-PKD2B
cscript ospp.vbs /inpkey:C4F7P-NCP8C-6CQPT-MQHV9-JXD2M
cscript ospp.vbs /sethst:107.175.77.7
cscript ospp.vbs /sethst:172.16.0.2
cscript ospp.vbs /act
echo.
echo.
echo Nhan phim bat ky de thoat.
:end
:notsupported
:halt
pause >nul
goto:MAINMENU
:=====================================================================================
:9
@echo off
title Activate Microsoft Visio 2019 (ALL versions) for FREE - https://github.com/BsNgChiThanh
cls
color F0
mode con cols=98 lines=30
echo Activating Microsoft Visio 2019...
(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")
(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")
(cscript //nologo ospp.vbs /setprt:1688 >nul || goto wshdisabled)&cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\pkeyconfig-office.xrm-ms" >nul
(for /f %%x in ('dir /b ..\root\Licenses16\client-issuance*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\visioprovl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\visiopro2019vl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
cscript ospp.vbs /setprt:1688
cscript ospp.vbs /inpkey:9BGNQ-K37YR-RQHF2-38RQ3-7VCBB
cscript ospp.vbs /inpkey:7TQNQ-K3YQQ-3PFH7-CCPPM-X4VQ2
cscript ospp.vbs /sethst:107.175.77.7
cscript ospp.vbs /sethst:172.16.0.2
cscript ospp.vbs /act
echo.
echo.
echo Nhan phim bat ky de thoat.
:end
:notsupported
:halt
pause >nul
goto:MAINMENU
:=====================================================================================
:10
@echo off
title Activate Microsoft Office Prolus 2016 for FREE - https://github.com/BsNgChiThanh
cls
color F0
mode con cols=98 lines=30
echo Activating your Microsoft Office prolus 2016...
(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")
(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")
(for /f %%x in ('dir /b ..\root\Licenses16\proplusvl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\proplusvl_mak*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
cscript ospp.vbs /setprt:1688
cscript ospp.vbs /inpkey:JNRGM-WHDWX-FJJG3-K47QV-DRTFM
cscript ospp.vbs /inpkey:XQNVK-8JYDB-WJ9W3-YJ8YR-WFG99
cscript ospp.vbs /inpkey:T4NR6-38X6Q-RFQTM-XPRBT-XQBVM
cscript ospp.vbs /sethst:107.175.77.7
cscript ospp.vbs /sethst:172.16.0.2
cscript ospp.vbs /act
echo.
echo.
echo Nhan phim bat ky de thoat.
:end
:notsupported
:halt
pause >nul
goto:MAINMENU
:=====================================================================================
:11
@echo off
title Activate Microsoft Project 2016 (ALL versions) for FREE - https://github.com/BsNgChiThanh
cls
color F0
mode con cols=98 lines=30
echo Activating your Project 2016...
(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")
(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")
cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\pkeyconfig-office.xrm-ms" >nul
cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\ProjectProVL_KMS_Client-ppd.xrm-ms" >nul
cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\ProjectProVL_KMS_Client-ul-oob.xrm-ms" >nul
cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\ProjectProVL_KMS_Client-ul.xrm-ms" >nul
cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\client-issuance-bridge-office.xrm-ms" >nul
cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\client-issuance-root.xrm-ms" >nul
cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\client-issuance-root-bridge-test.xrm-ms" >nul
cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\client-issuance-stil.xrm-ms" >nul
cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\client-issuance-ul.xrm-ms" >nul
cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\client-issuance-ul-oob.xrm-ms" >nul
cscript ospp.vbs /setprt:1688
cscript ospp.vbs /inpkey:YG9NW-3K39V-2T3HJ-93F3Q-G83KT
cscript ospp.vbs /inpkey:GNFHQ-F6YQM-KQDGJ-327XX-KQBVC
cscript ospp.vbs /sethst:107.175.77.7
cscript ospp.vbs /sethst:172.16.0.2
cscript ospp.vbs /act
echo.
echo.
echo Nhan phim bat ky de thoat.
:notsupported
:halt
pause >nul
goto:MAINMENU
:=====================================================================================
:12
@echo off
title Activate Microsoft Visio 2016 (ALL versions) for FREE - https://github.com/BsNgChiThanh
cls
color F0
mode con cols=98 lines=30
echo Activating your Visio 2016...
(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")
(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")
(cscript //nologo ospp.vbs /setprt:1688 >nul || goto wshdisabled)&cscript //nologo ospp.vbs /inslic:"..\root\Licenses16\pkeyconfig-office.xrm-ms" >nul
(for /f %%x in ('dir /b ..\root\Licenses16\client-issuance*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\visioprovl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
(for /f %%x in ('dir /b ..\root\Licenses16\visiopro2016vl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)
cscript ospp.vbs /setprt:1688
cscript ospp.vbs /inpkey:PD3PC-RHNGV-FXJ29-8JK7D-RJRJK
cscript ospp.vbs /inpkey:7WHWN-4T7MP-G96JF-G33KR-W8GF4
cscript ospp.vbs /sethst:107.175.77.7
cscript ospp.vbs /sethst:172.16.0.2
cscript ospp.vbs /act
echo.
echo.
echo Nhan phim bat ky de thoat.
:end
:notsupported
:halt
pause >nul
goto:MAINMENU
:=====================================================================================
:13
@echo off
title Activate Microsoft Office 2013 - https://github.com/BsNgChiThanh
cls
color F0
mode con cols=98 lines=30
echo Activating your Microsoft Office 2013...
set v=15
if exist "%ProgramFiles%\Microsoft Office\Office%v%\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office%v%"
if exist "%ProgramFiles(x86)%\Microsoft Office\Office%v%\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office%v%"
cscript ospp.vbs /setprt:1688
cscript OSPP.VBS /inpkey:YC7DK-G2NP3-2QQC3-J6H88-GVGXT
cscript OSPP.VBS /inpkey:KBKQT-2NMXY-JJWGP-M62JB-92CD4
cscript OSPP.VBS /inpkey:472JN-9KRCH-9YKBC-XVYKY-DPCDH
cscript OSPP.VBS /inpkey:X32DM-N6M7G-YJK9X-XJ9M7-2R2D6
cscript OSPP.VBS /inpkey:Q2797-PGN9H-YJWRG-YGHYB-8FD67
cscript ospp.vbs /sethst:107.175.77.7
cscript ospp.vbs /sethst:172.16.0.2
cscript ospp.vbs /act
echo.
echo.
echo Bam phim bat ki de thoat
:end
:notsupported
:halt
pause >nul
goto:MAINMENU
:=====================================================================================
:14
@echo off
title Activate Project 2013 - https://github.com/BsNgChiThanh
cls
color F0
mode con cols=98 lines=30
echo Activating your Project 2013...
set v=15
if exist "%ProgramFiles%\Microsoft Office\Office%v%\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office%v%"
if exist "%ProgramFiles(x86)%\Microsoft Office\Office%v%\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office%v%"
cscript ospp.vbs /setprt:1688
cscript OSPP.VBS /inpkey:FN8TT-7WMH6-2D4X9-M337T-2342K
cscript OSPP.VBS /inpkey:6NTH3-CW976-3G3Y2-JK3TX-8QHTT
cscript ospp.vbs /sethst:107.175.77.7
cscript ospp.vbs /sethst:172.16.0.2
cscript ospp.vbs /act
echo.
echo.
echo Bam phim bat ki de thoat
:end
:notsupported
:halt
pause >nul
goto:MAINMENU
:=====================================================================================
:15
@echo off
title Activate Visio 2013 - https://github.com/BsNgChiThanh
cls
color F0
mode con cols=98 lines=30
echo Activating your Visio 2013...
set v=15
if exist "%ProgramFiles%\Microsoft Office\Office%v%\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office%v%"
if exist "%ProgramFiles(x86)%\Microsoft Office\Office%v%\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office%v%"
cscript ospp.vbs /setprt:1688
cscript OSPP.VBS /inpkey:C2FG9-N6J68-H8BTJ-BW3QX-RM3B3
cscript OSPP.VBS /inpkey:J484Y-4NKBF-W2HMG-DBMJC-PGWR7
cscript OSPP.VBS /inpkey:RNQR6-67XM2-Y9V4R-7HQQH-94QB4
cscript ospp.vbs /sethst:107.175.77.7
cscript ospp.vbs /sethst:172.16.0.2
cscript ospp.vbs /act
echo.
echo.
echo Bam phim bat ki de thoat
:end
:notsupported
:halt
pause >nul
goto:MAINMENU
:=====================================================================================
:16
@echo off
title Activate Office Prolus 2010 - https://github.com/BsNgChiThanh
cls
color F0
mode con cols=98 lines=30
echo Activating your Office Prolus 2010...
set v=14
if exist "%ProgramFiles%\Microsoft Office\Office%v%\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office%v%"
if exist "%ProgramFiles(x86)%\Microsoft Office\Office%v%\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office%v%"
cscript ospp.vbs /setprt:1688
cscript //Nologo OSPP.VBS /inpkey:VYBBJ-TRJPB-QFQRF-QFT4D-H3GVB
cscript //Nologo OSPP.VBS /inpkey:V7QKV-4XVVR-XYV4D-F7DFM-8R6BM
cscript ospp.vbs /sethst:107.175.77.7
cscript ospp.vbs /sethst:172.16.0.2
cscript ospp.vbs /act
echo.
echo.
echo Bam phim bat ki de thoat
:end
:notsupported
:halt
pause >nul
goto:MAINMENU
:=====================================================================================
:17
@echo off
title Activate Project 2010 - https://github.com/BsNgChiThanh
cls
color F0
mode con cols=98 lines=30
echo Activating your Project 2010...
set v=14
if exist "%ProgramFiles%\Microsoft Office\Office%v%\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office%v%"
if exist "%ProgramFiles(x86)%\Microsoft Office\Office%v%\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office%v%"
cscript ospp.vbs /setprt:1688
cscript //Nologo OSPP.VBS /inpkey:YGX6F-PGV49-PGW3J-9BTGG-VHKC6
cscript //Nologo OSPP.VBS /inpkey:4HP3K-88W3F-W2K3D-6677X-F9PGB
cscript ospp.vbs /sethst:107.175.77.7
cscript ospp.vbs /sethst:172.16.0.2
cscript ospp.vbs /act
echo.
echo.
echo Bam phim bat ki de thoat
:end
:notsupported
:halt
pause >nul
goto:MAINMENU
:=====================================================================================
:18
@echo off
title Activate Visio 2010 - https://github.com/BsNgChiThanh
cls
color F0
mode con cols=98 lines=30
echo Activating your Visio 2010...
set v=14
if exist "%ProgramFiles%\Microsoft Office\Office%v%\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office%v%"
if exist "%ProgramFiles(x86)%\Microsoft Office\Office%v%\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office%v%"
cscript //Nologo OSPP.VBS /inpkey:D9DWC-HPYVV-JGF4P-BTWQB-WX8BJ
cscript //Nologo OSPP.VBS /inpkey:7MCW8-VRQVK-G677T-PDJCM-Q8TCP
cscript //Nologo OSPP.VBS /inpkey:767HD-QGMWX-8QTDB-9G3R2-KHFGJ
cscript ospp.vbs /sethst:107.175.77.7
cscript ospp.vbs /sethst:172.16.0.2
cscript ospp.vbs /act
echo.
echo.
echo Bam phim bat ki de thoat
:end
:notsupported
:halt
pause >nul
goto:MAINMENU
:=====================================================================================
:19
@echo off
:======================================================================================================================================================
:Thanks to abbodi1406 for SppExtComObjPatcher-kms\2-Activate-Local.cmd, which used as base in this script
:Thanks to rpo for the Great and Continued help in improving this script.
:Thanks to AR_Alex for the ideas and suggestions.
:======================================================================================================================================================
::===========================================================================
fsutil dirty query %systemdrive% >nul 2>&1 || (
echo ==== ERROR ====
echo This script require administrator privileges.
echo To do so, right click on this script and select 'Run as administrator'
echo.
echo Press any key to exit...
pause >nul
exit
)
::===========================================================================
color 1F
mode con cols=98 lines=30
title Tao tac vu gia han kich hoat (Create Autorenew)
setlocal EnableExtensions EnableDelayedExpansion
:======================================================================================================================================================
:MAINMENU
cls
mode con cols=98 lines=30
goto:CreateRenewalTask
:======================================================================================================================================================
:ReadMe
cls
mode con cols=98 lines=130
call :create_file %0 "%TEMP%\ReadMe.txt" "REM ReadMe Start" "REM ReadMe End"
goto :TempReadMe
REM ReadMe Start
===============================================================================================
# About:
- Online KMS Activation Script.cmd
Activate Windows and Office with online KMS Servers.
===============================================================================================
# Remarks:
- If You just want to activate for 180 days and don't want any remnants (KMS server name)
then you should first choose option no. 2 (Activate) and after that use option no. 5
(Complete Uninstall).
- If you want lifetime activation, then you should choose option no. 2 (Activate) and after
that option no. 4 (Create Renewal Task). Note that your system must connect to internet
once in six months period, for lifetime activation.
- If you don't select option no. 5 (Complete Uninstall) after activation or renewal task
then later installed vl office (2013 and 2016 not 2010) will auto activate if online and you
don't need to run this activator again for vl office. Note that this type of auto activation
will only happen in windows 8.1/10 systems, not in windows 7.
- If your system date is not correct due to 'Bad Bios Battery' in that case, either fix the
bios battery or make sure system is always online or use other offline activators.
- Script will skip activation for any windows or office if found permanently activated.
- For most products, activation period will be for 180 days but for some products it is 30
and 45 days etc.
- This script will activate the VL Office, Not the retail (C2R) office.
So either convert retail into VL, or just download Official VL Office from
GezoeSloog (MDL Member) repo https://pastebin.com/raw/Hk2RgYzF
Verify if Downloaded VL office is genuine or not, with this tool.
https://genuineisoverifier.weebly.com/
- To preactivate the windows during installation, Do the following things.
Use option No. 6 in script and extract the $OEM$ Folder to Desktop. Now copy this $OEM$
Folder to "sources" folder in the installation media.
The directory will appear like this. iso/usb: \sources\$OEM$
Now use this iso/usb to install Windows and it'll auto activate at first online contact
===============================================================================================
# Fix Tip:
If you having activation errors, try to rebuild licensing Tokens.dat as suggested:
https://support.microsoft.com/en-us/help/2736303
launch command prompt as admin and execute these commands respectively:
net stop sppsvc
ren %windir%\System32\spp\store\2.0\tokens.dat tokens.bar
net start sppsvc
cscript %windir%\system32\slmgr.vbs /rilc
then restart the system twice,
afterwards, run the script to activate.
===============================================================================================
# Supported Products:
Windows 7 (VL e.g. Pro, Enterprise)/8/8.1/10
Windows Server 2008R2/2012/2012R2/2016/2019
Office (VL) 2010/2013/2016/2019
===============================================================================================
# Credits:
Abbodi1406 - Author of SppExtComObjPatcher-kms\2-Activate-Local.cmd which used
as base in this Online Script.
rpo - Great and Continued help in improving this script.
AR_Alex - Interesting ideas, suggestions and help.
WindowsAddict - Testing, Managing, and publishing.
===============================================================================================
# Homepages:
W10 Digital License Activation Script __ W10 LTSB 2015 Digital License Activation Script
https://www.nsaneforums.com/topic/316668-w10-digital-license-activation-script/
Online KMS Activation Script
https://www.nsaneforums.com/topic/318518-online-kms-activation-script/
Digital + KMS Preactivation Script
https://www.nsaneforums.com/topic/318518-online-kms-activation-script-v40/?page=3&tab=comments#comment-1358422
===============================================================================================
REM ReadMe End
:TempReadMe
type "%temp%\ReadMe.txt"
echo.
echo.
echo Press any key to continue...
pause >nul
del /f /q "%temp%\ReadMe.txt"
goto:Exit
:======================================================================================================================================================
:Activate
cls
mode con cols=98 lines=200
echo ============================================================================
echo Note: Make sure you are connected to Internet For Successful Activation.
echo ============================================================================
echo.
choice /C:GC /N /M "[C] Continue To Activation [G] Go Back : "
if %errorlevel%==1 Goto:Exit
cls
call :create_file %0 "%TEMP%\Activation.cmd" "REM (Re)activate cmd Start" "REM (Re)activate cmd End"
goto :TempActivation
:TempActivation
call "%TEMP%\Activation.cmd"
del /f /q "%TEMP%\Activation.cmd"
goto:Exit
:======================================================================================================================================================
:CheckActivation
cls
mode con cols=98 lines=200
ECHO ************************************************************
ECHO *** Windows Status ***
ECHO ************************************************************
COPY /Y %systemroot%\System32\slmgr.vbs "%temp%\slmgr.vbs" >NUL 2>&1
cscript //nologo "%temp%\slmgr.vbs" /dli