Windows 8 KMS Activation

Discussion in 'Windows 8' started by The_Spider, Aug 6, 2012.

Thread Status:
Not open for further replies.
  1. FreeStyler

    FreeStyler MDL Guru

    Jun 23, 2007
    3,563
    3,853
    120
    #3481 FreeStyler, Oct 19, 2012
    Last edited by a moderator: Apr 20, 2017
    Make sure your Windows Firewall has opened port 1688 as well, eg:
    Code:
    netsh advfirewall firewall set rule name="Key Management Service (TCP-In)" new enable=yes
    The command above should return:
    Code:
    Updated 2 rule(s).
    Ok.
     
  2. ashoktvm

    ashoktvm MDL Addicted

    Jul 29, 2009
    523
    49
    30
    I am able to run VMWare windows 8 and 7 in my desktop and able to run KMS server. But in my laptop even after giving bridge and NAT i am unable to get lan connection and unable to ping the KMS server by network machines. I am using wireless, will that be the problem?
     
  3. rrohela

    rrohela MDL Expert

    Sep 1, 2009
    1,610
    1,409
    60
    To successfully ping open ICMP echo port & for activation open KMS port on host.
     
  4. FreeStyler

    FreeStyler MDL Guru

    Jun 23, 2007
    3,563
    3,853
    120
    As already said i did not tested it, but i simply assumed 'activate the previous generation' would not mean 'activate the previous generations'
    Anyway, good to know it works for Vista as well
     
  5. ashoktvm

    ashoktvm MDL Addicted

    Jul 29, 2009
    523
    49
    30
    Ok I think i am not being clear. I am using the same VM i used on desktop and moved it to use on laptop. In that I am not able to ping the KMS server (VM machine) which i run in the same laptop.
     
  6. Mr Been

    Mr Been MDL Senior Member

    Feb 24, 2008
    262
    70
    10
    Has this KMS Host key to be activated at Microsoft, and how often can this be done?
     
  7. pisthai

    pisthai Imperfect Human

    Jul 29, 2009
    7,202
    2,271
    240
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. Bornung1

    Bornung1 MDL Member

    Oct 9, 2010
    148
    39
    10
    @pisthai

    I need this one: All supported x86-based versions of Windows 7

    Cheers
    and thanks

    @rrohela
    Many thanks :) just what i needed.
     
  9. naseap

    naseap MDL Senior Member

    Jul 25, 2009
    489
    123
    10
    This script works great in Win8 to up the count but after it is done I noticed that my ssp service remains stopped. I have to manually restart it. Shouldn't it restart when it is done.



    REM Increment KMS to 25 so it starts activating clients
    REM save as a bat file.
    REM Windows 8 Enterprise/pro inbuilt KMS Client key used in this one.
    setLocal EnableDelayedExpansion
    set /p X=how many time do you want to run
    :loop
    set /a N+=1
    if !N! gtr !X! goto :eof
    echo your task goes here
    taskkill /im sppsvc.exe /f
    net stop sppsvc /y
    net stop sppsvc /y
    net stop sppsvc /y
    del C:\Windows\System32\spp\store\tokens.dat /q
    del C:\Windows\System32\spp\store\tokens.dat.bak /q
    attrib -H C:\Windows\System32\spp\store\data.dat
    del C:\Windows\System32\spp\store\data.dat /q
    del C:\Windows\System32\spp\store\cache\cache.dat /q
    rem net start sppsvc /y
    cscript %systemroot%\system32\slmgr.vbs -ipk GVLKKEY
    cscript %systemroot%\system32\slmgr.vbs /ckms
    cscript %systemroot%\system32\slmgr.vbs /skms kms.yourdomain.com
    cscript %systemroot%\system32\slmgr.vbs /ato
    goto :loop
     
  10. rrohela

    rrohela MDL Expert

    Sep 1, 2009
    1,610
    1,409
    60
    Remove rem for later use( to run once a day)
    For first use to increase count form 0 to 25 use it as it is.
     
  11. naseap

    naseap MDL Senior Member

    Jul 25, 2009
    489
    123
    10
    Thanks, works great. I need to learn some more.
     
  12. FreeStyler

    FreeStyler MDL Guru

    Jun 23, 2007
    3,563
    3,853
    120
    Why do you think VM packages are distributed? So you can activate online?
    The key no longer can be used to activate against MS servers, it is blocked now
     
  13. Chris123NT

    Chris123NT MDL Expert

    Oct 23, 2010
    1,070
    793
    60
    Some people are a bit dense
     
  14. lunar21

    lunar21 MDL Addicted

    Dec 14, 2008
    753
    270
    30
    When you mean "Remove rem for later use and for first use" do you mean on first time of running it, remove this rem and run it, then afterwords (ie once a day running), just keep it on, or what do you mean?

     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...