KMS Activate Windows 8.1 (En & Pro) and Office 2013

Discussion in 'Windows 8' started by FaiKee, Oct 25, 2013.

  1. ace2

    ace2 Guest

  2. Mr.X

    Mr.X MDL Guru

    Jul 14, 2013
    8,556
    15,642
    270
    #2542 Mr.X, Nov 30, 2013
    Last edited by a moderator: Apr 20, 2017
  3. justin0926

    justin0926 MDL Junior Member

    Nov 11, 2013
    57
    12
    0
    Thank you very much!
     
  4. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,419
    11,688
    240
    My mistake. Tunmirror is extremely weak without running as /high though... you might try it.
    It seems to fail frequently without it.
     
  5. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,211
    90,797
    340
    #2545 abbodi1406, Dec 1, 2013
    Last edited by a moderator: Apr 20, 2017
    this can make it run high :D
    Code:
    cmd /c start /b /high TunMirror.exe >nul 2>&1
    you can do the same with KMS Server:
    Code:
    cmd /c start /b /high "" "KMS Server.exe" %port% %epid% %AI% %RI% KillProcessOnPort >nul 2>&1
     
  6. ace2

    ace2 Guest

    #2546 ace2, Dec 1, 2013
    Last edited by a moderator: Apr 20, 2017
  7. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,716
    14,439
    340
    #2548 xinso, Dec 1, 2013
    Last edited by a moderator: Apr 20, 2017
  8. ace2

    ace2 Guest

    #2549 ace2, Dec 1, 2013
    Last edited by a moderator: Apr 20, 2017
    Replace timeout /t 3 /nobreak >nul 2>&1 with NET START ALG >nul 2>&1

    Code:
    NET START ALG >nul 2>&1
    
    cmd /c start /b /high "" "KMS Server.exe" %port% %epid% %AI% %RI% KillProcessOnPort >nul 2>&1
    cmd /c start /b /high TunMirror.exe >nul 2>&1

    Never fails for me.
     
  9. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,716
    14,439
    340
    #2550 xinso, Dec 1, 2013
    Last edited by a moderator: Apr 20, 2017
    Thanks. I tried as instructed.

    It just won't activate my pc without "timeout /t 3" (at least).

    But it's stable though.

    Oh, ace2, do you know how to make FakeClient a "working" Service?
     
  10. Paiva

    Paiva MDL Developer

    Apr 9, 2011
    1,274
    1,592
    60
    #2551 Paiva, Dec 1, 2013
    Last edited by a moderator: Apr 20, 2017
  11. ace2

    ace2 Guest

    #2552 ace2, Dec 1, 2013
    Last edited by a moderator: Apr 20, 2017
  12. rpo

    rpo MDL Expert

    Jan 3, 2010
    1,479
    1,474
    60
    If the ALG service is already running, "NET START ALG" has no effect...
     
  13. ace2

    ace2 Guest

    Activation still works for me If the ALG service is already running .;)
     
  14. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,716
    14,439
    340
    #2556 xinso, Dec 1, 2013
    Last edited by a moderator: Apr 20, 2017
  15. zwaan123

    zwaan123 MDL Member

    Aug 15, 2011
    245
    491
    10
    #2557 zwaan123, Dec 1, 2013
    Last edited by a moderator: Apr 20, 2017
    Iam still finding out how to show office activation status if i use the .cmd file it works
    but if i start it from a .vbs it indeed only shows windows status but .vbs is needed for the installer to work.
     
  16. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,716
    14,439
    340
    #2558 xinso, Dec 1, 2013
    Last edited by a moderator: Apr 20, 2017
    Try this: View attachment 25660

    Usage: cscript KMSactivator.vbs /act:Dso

    Note: dso = display status only

    Code:
    Microsoft (R) Windows Script Host Version 5.8
    Copyright (C) Microsoft Corp. 1996-2006, 著作權所有,並保留一切權利
    
    = Windows(R), ProfessionalWMC edition =========================================
      Windows(R) Operating System, VOLUME_KMSCLIENT channel
      Partial Product Key: J8D3P
           License Status: Licensed
         KMS-host Machine: 172.16.0.1:1688
           KMS-Server PID: 06401-00206-588-OOOOOO-03-1058-9600.0000-2932013
     Expiration Date/Time: 2014/1/15 下午 11:17:14
    ===============================================================================
    = Office 15, OfficeProPlusVL_KMS_Client edition ===============================
      Office 15, VOLUME_KMSCLIENT channel
      Partial Product Key: GVGXT
           License Status: Licensed
         KMS-host Machine: 172.16.0.1:1688
           KMS-Server PID: 05426-00206-022-XXXXXX-03-1074-9200.0000-3052013
     Expiration Date/Time: 2014/5/30 下午 11:17:14
    ===============================================================================
     
  17. ace2

    ace2 Guest

    #2559 ace2, Dec 1, 2013
    Last edited by a moderator: Apr 20, 2017
    xinso can you test this cmd, thanks ace2 .;)

    Code:
    @echo off
    color 1F
    
    echo.Windows 8.1 5IN1 Activation.
    echo.
    netsh advfirewall set allprofiles state OFF >nul
    
    pushd "%~dp0"
    
    set port=1688
    set kmsip=10.3.0.3
    set AI=43200
    set RI=43200
    set epid=RandomKMSPID
    set /a ktap=0
    
    devcon.exe install OemWin2k.inf tap0901 >nul
    
    cscript //B "%windir%\system32\slmgr.vbs" /skms 10.3.0.3:1688 >nul
    netsh interface ip set address "PUT YOUR TAP NAME HERE" static 10.3.0.1 255.255.255.0 >nul
    
    NET START ALG >nul
    
    start /b /high "" "KMS Server.exe" %port% %epid% %AI% %RI% KillProcessOnPort
    start /b TunMirror.exe >nul
    
    cscript //b "%windir%\system32\slmgr.vbs" /upk
    cscript //B "%windir%\system32\slmgr.vbs" /ipk PUT YOUR SERIAL HERE
    slmgr.vbs /ato
    
    taskkill /t /f /im "KMS Server.exe" >nul
    taskkill /t /f /im TunMirror.exe >nul
    
    NET STOP ALG >nul
    
    devcon.exe remove OemWin2k.inf tap0901 >nul
    
    cscript //B "%windir%\system32\slmgr.vbs" /ckms
    
    netsh advfirewall set allprofiles state ON >nul
    
    taskkill /t /f /im conhost.exe >nul
     
  18. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,716
    14,439
    340
    #2560 xinso, Dec 1, 2013
    Last edited by a moderator: Apr 20, 2017