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

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

  1. zetitres

    zetitres MDL Member

    Oct 20, 2009
    229
    49
    10
    #2481 zetitres, Nov 27, 2013
    Last edited by a moderator: Apr 20, 2017
    Believe you should prepare an activation set which should contain all the needed to test: program, dll's, script etc.:cool:
     
  2. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,211
    90,796
    340
    Exactly the same issue i have. o_O
     
  3. AnimaliX

    AnimaliX MDL Novice

    Jul 28, 2009
    45
    23
    0
    ace2

    i dont know why but everytime i lost permanently internet connection (static IP, DHCP disabled)
    maybe is something wrong with route 1.0.0.0 0.0.0.0

    everything is back to normal when i enable DHCP service and settings with auto IP
     
  4. ace2

    ace2 Guest

    #2484 ace2, Nov 27, 2013
    Last edited by a moderator: Apr 20, 2017
    I have no idea

    Add

    Code:
    netsh interface ipv4 set address name="Put name of connection here" source=dhcp
    timeout /t 5
    ipconfig /release
    ipconfig /renew
    OR

    Code:
    netsh interface ip set address "Put name of connection here" dhcp
    timeout /t 5
    ipconfig /release
    ipconfig /renew
    to the bottom of the Activation.cmd file, see if it helps.;)
     
  5. WildByDesign

    WildByDesign MDL Addicted

    Sep 8, 2013
    754
    408
    30
    Regarding the unintended volume activation trick of 8.1 Pro with WMC (45 days) through KMS...
    - is there any way that MS can prevent this trick from working in the future through Windows Updates?
     
  6. Snuffy

    Snuffy MDL Expert

    Jan 7, 2008
    1,272
    630
    60
    Windows 8.1 Pro - Office 2013 both x64 - removed all prior KMS Server (files), TAP, Server, Services if there was any....
    Turned Off Internet after i downloaded the programs....
    Removed KEY, reset Watermark showed....
    uncompressed and ran KMS VL ALL 1.1.1.1 - was fast - Activated both NO internet needed.... very good,
    Snuffy Approved - View attachment 25599
     
  7. fits79

    fits79 MDL Member

    Jan 9, 2010
    157
    5
    10
    Is there any MORE PERMANENT way/procedure from KMSnano 16.1 to activate the windows 8.1????

    If there is can you tell me which is it?
     
  8. Nael_Nael

    Nael_Nael MDL Novice

    Nov 17, 2013
    3
    0
    0
    my windows version is enterprise x86 , and this crack shows error msg during activation :
    (( Error: 0xC0000022 On a computer running Microsoft Windows non-core edition, run 'slui.exe 0x2a 0xC0000022' to display the error text. ))

    View attachment 25602
    any solutions ????
     
  9. hdzz

    hdzz MDL Novice

    Jan 10, 2013
    15
    15
    0
    route add %kmsip% 0.0.0.0 IF 1 >nul
    The second parameter is gateway ,0.0.0.0 is a wrong ip.
    Set parameter to any value except wrong ips and the values ​​are being used .
     
  10. Nucleus

    Nucleus MDL Guru

    Aug 4, 2009
    2,868
    2,950
    90
    #2491 Nucleus, Nov 28, 2013
    Last edited by a moderator: Apr 20, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,419
    11,688
    240
    I think I understand setting the gateway to 0.0.0.0 now...
    I'm sorry I didn't get it at first...
    I'm a little concerned about potential consequences, as the 0.0.0.0 is already in use, but I guess the route doesn't actually do anything, so it's no big deal.
     
  12. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,419
    11,688
    240
    #2493 murphy78, Nov 28, 2013
    Last edited by a moderator: Apr 20, 2017
    The only thing I can think of with regards to that is that your system allows the tap adapter, but takes FOREVER to initialize it.
    That was the iteration where if the tap was already installed, it would not mess with it.

    See the code:
    Code:
    :Compare the build and install tap and tunmirror if 9600 or greater
    for /f "tokens=6 delims=[]. " %%G in ('ver') do set winbuild=%%G
    if %winbuild% LSS 9600 (set kmsip=127.0.0.2&goto :posttap)
    
    
    reg.exe query "hklm\software\microsoft\Windows NT\currentversion" /v buildlabex | find /i "amd64" >nul 2>&1
    if %errorlevel% equ 0 set xOS=x64
    if /i "%PROCESSOR_ARCHITECTURE%"=="x86" if not defined PROCESSOR_ARCHITEW6432 set xOS=x86
    route print | find /i "TAP-Windows Adapter V9" >nul 2>&1
    IF NOT ERRORLEVEL 1 goto :act
    IF ERRORLEVEL 1 goto :tap
    
    
    :tap
    certutil.exe -addstore -f "TrustedPublisher" tap0901.cer >nul 2>&1
    %xOS%\devcon.exe install %xOS%\OemWin2k.inf tap0901 >nul 2>&1
    if %errorlevel% neq 0 (exit)
    set /a ktap=0
    
    
    :act
    for /f "tokens=1 delims=. " %%i in ('route print ^| find /i "TAP-Windows Adapter V9"') do (netsh interface ip set address %%i static 10.3.0.1 255.255.255.0) >nul 2>&1
    start /b /high TunMirror.exe >nul 2>&1
    
    
    :posttap
    
    
    Set KMSSERVERPATH="%~dp0KMS Server.exe"
    netsh advfirewall firewall add rule name="KMSServer" dir=in  program=%KMSSERVERPATH% localport=%port% protocol=TCP action=allow remoteip=localsubnet >nul 2>&1
    netsh advfirewall firewall add rule name="KMSServer" dir=out  program=%KMSSERVERPATH% localport=%port% protocol=TCP action=allow remoteip=localsubnet >nul 2>&1
    start /b /high "" "KMS Server.exe" %port% %epid% %AI% %RI% KillProcessOnPort >nul 2>&1
    timeout /t 3 /nobreak >nul 2>&1
    
    
    call :SPP
    call :OSPP
    taskkill /t /f /IM "KMS Server.exe" >nul 2>&1
    if %ktap% equ 0 (taskkill /t /f /IM tunmirror.exe >nul 2>&1)
    if %ktap% equ 0 (%xOS%\devcon.exe remove tap0901 >nul 2>&1)
    
    
    netsh advfirewall firewall delete rule name="KMSServer" >nul 2>&1
    exit
     
  13. piercekalton

    piercekalton MDL Senior Member

    Apr 2, 2010
    415
    42
    10
  14. piercekalton

    piercekalton MDL Senior Member

    Apr 2, 2010
    415
    42
    10
    #2495 piercekalton, Nov 28, 2013
    Last edited by a moderator: Apr 20, 2017
    here's the office activation after doing Windows

    Code:
    === Installing WinDivert driver ...
    Install/Reinstall KMS Service ...
    Starting KMS-server service and creating Firewall Rule ...
    KMS-Service started successful
                                           ==========================
    Activating Office using 100.100.0.10:1688 ...
    = KMS-Server Data Global Setting 
    Setting SPP KMS-Server Address/Name to 100.100.0.10 ...
    Already set. Skipped.
    Setting SPP KMS-Server Port to 1688 ...
    Already set. Skipped.
    = Activation of Products: Office 2010, Office 2013
    == Office 15, OfficeProPlusVL_KMS_Client edition
      Product Description: Office 15, VOLUME_KMSCLIENT channel
      Partial Product Key: GVGXT
           License Status: Out-of-Box (OOB) Grace
         KMS-host Machine: 100.100.0.10:1688
    Activating ...
    KMS-host Service has been successfully deleted
                                           ==========================
                                =====   Product successfully activated   =====
                                           ==========================
    
    another question, what is left on the system? is the KMS server running? how does this all re-activate? just a little confused.
     
  15. Mr.X

    Mr.X MDL Guru

    Jul 14, 2013
    8,556
    15,642
    270
    The sole thing you need to do is schedule tasks, check out the proper buttons on the interface but first copy the program folder into a convenient location prior to schedule a task. It's easy.

    Both systems need reactivation after 180 days max. Once again you need to schedule tasks for this.
     
  16. piercekalton

    piercekalton MDL Senior Member

    Apr 2, 2010
    415
    42
    10
    so every time you do it you get 180 fresh days right? so I can come back here and get your new versions to test and refresh also?
     
  17. Mr.X

    Mr.X MDL Guru

    Jul 14, 2013
    8,556
    15,642
    270
    To both questions the answer is yes.
     
  18. Nael_Nael

    Nael_Nael MDL Novice

    Nov 17, 2013
    3
    0
    0
    my windows version is enterprise x86 , and this crack shows error msg during activation :
    (( Error: 0xC0000022 On a computer running Microsoft Windows non-core edition, run 'slui.exe 0x2a 0xC0000022' to display the error text. ))

    View attachment 25602
    any solutions ????
    please help !!!!!!
     
  19. Mr.X

    Mr.X MDL Guru

    Jul 14, 2013
    8,556
    15,642
    270
    Firstly, this KMS Server solution is not a crack, not a patch either. Secondly, if your Windows Enterprise can't get activated is likely due to the previous use of any other solution or cracks on an attempt to activate it, hence something got corrupted, I guess.
    My advise is to do a fresh install of Windows and try it over again.