KMSmicro local server activation

Discussion in 'Windows 8' started by craftbrewer, Nov 4, 2012.

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

    Garbellano MDL Addicted

    Aug 13, 2012
    947
    248
    30
    #201 Garbellano, Nov 6, 2012
    Last edited: Nov 6, 2012
  2. crazysharath

    crazysharath MDL Member

    Aug 13, 2012
    170
    84
    10
    Aah i don't know,it worked in the final version for me.
     
  3. Puffingmad

    Puffingmad MDL Addicted

    Aug 19, 2012
    500
    230
    30
    RTM = Release to Manufacture = final release
     
  4. HeadWalker

    HeadWalker MDL Senior Member

    Aug 22, 2009
    316
    348
    10
    Can someone teste KMS server:
    walkercorps.zapto.org
    or
    walkercorps.zapto.org:1688
     
  5. Puffingmad

    Puffingmad MDL Addicted

    Aug 19, 2012
    500
    230
    30
    tested on walkercorps.zapto.org:1688 works fine :p

    also works on walkercorps.zapto.org

    job done
     
  6. HeadWalker

    HeadWalker MDL Senior Member

    Aug 22, 2009
    316
    348
    10
    LOL then we can make public KMS server with KMSmicro! :worthy:
     
  7. Puffingmad

    Puffingmad MDL Addicted

    Aug 19, 2012
    500
    230
    30
    put a run down of how you got it public together and share it for all :D

    worked without port number as well
     
  8. Zaratustra

    Zaratustra MDL Novice

    Nov 6, 2012
    1
    0
    0
    #208 Zaratustra, Nov 6, 2012
    Last edited by a moderator: Apr 20, 2017
  9. adit123tya

    adit123tya MDL Senior Member

    Oct 25, 2012
    397
    197
    10
    #209 adit123tya, Nov 6, 2012
    Last edited: Nov 6, 2012
    Guys as I stated earlier when entered q option doesnot shutdown the kmsmicro... but entering cmd and then typing "shutdown /s /f /t 0" works...
     
  10. tohenk

    tohenk MDL Novice

    Jun 1, 2009
    6
    2
    0
    #210 tohenk, Nov 6, 2012
    Last edited by a moderator: Apr 20, 2017
    When a batch file started as Administrator, it always started from System32.
    So, to ensure the batch file both running well if running as Administrator or without Administrator add:
    Code:
    REM Change to batch directory
    %~d0
    cd "%~dp0"
    
    The batch 1-0-KMSmicro.cmd is for x64 system, and 1-1-KMSmicro - Alternative.cmd for x86 system. Both can be combined:
    Code:
    @ECHO OFF
    REM Start qemu on windows.
    REM Modified by: ELDI 
    REM File: 1-KMSmicro.cmd
    
    REM Change to batch directory
    %~d0
    cd "%~dp0"
    
    set /p IP4=Set IP-Address of KMS Server (Default: 127.0.0.1): ^>
    if [%IP4%]==[] set IP4=127.0.0.1
    set /p RAM=Set Amount of RAM in MB (Default: 200): ^>
    if [%RAM%]==[] set RAM=200
    
    if exist %SystemRoot%\SysWOW64 (
    set QEMU=qemu-system-x86_64.exe
    ) else (
    set QEMU=qemu-system-i386.exe
    )
    
    :Start Qemu
    cd qemu
    start %QEMU% ^
    -smbios type=1,manufacturer=Intel,version=1.01234,uuid=564d81c6-cd3a-d8e4-db29-756df139acb9 ^
    -uuid 564d81c6-cd3a-d8e4-db29-756df139acb9 ^
    -net nic -net user,hostfwd=tcp:%IP4%:1688-:1688,hostfwd=udp:127.0.0.1:123-:123,net=172.20.0.0/16,host=172.20.1.1 ^
    -m %RAM% ^
    -rtc base=localtime,clock=host ^
    -hda Image\KMSmicroV6.vhd ^
    -name "KMSmicro IP-%IP4%:1688" ^
    -M pc ^
    -L Bios
    exit
    
     
  11. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,092
    24,400
    340
    That´s really nice to hear mate :D.

    As allways, nice try. Send us a Office CSVLK and we will do :cool2:
    Yeah :biggrin5:! As said, a little how to would bw very cool.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,092
    24,400
    340
    Don´t start this CMD as admin. Will only show an error.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. Superfly

    Superfly MDL Expert

    Jan 12, 2010
    1,142
    543
    60
    Why are so many so keen on making their KMS public - sharing with friends on a private VPN is one thing but all this public stuff serves only to irritate M$ even further :mad:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,092
    24,400
    340
    Maybe not all of your friends are even in your LAN :D?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. venu

    venu MDL Addicted

    Oct 16, 2009
    894
    100
    30
    @s1ave77, will be good if you or OP update the first post to reflect the changes like not running 1 cmd as admin or not disabling uac.
     
  16. Superfly

    Superfly MDL Expert

    Jan 12, 2010
    1,142
    543
    60
    Thats not the point - MDL got cautioned once before - think about it?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. tohenk

    tohenk MDL Novice

    Jun 1, 2009
    6
    2
    0
    #217 tohenk, Nov 6, 2012
    Last edited by a moderator: Apr 20, 2017
    It will fail because:
    Solution:
    So, the corrected file should be:
     
  18. FiB3R_OPTiC

    FiB3R_OPTiC MDL Member

    Oct 30, 2011
    154
    45
    10
    #218 FiB3R_OPTiC, Nov 6, 2012
    Last edited: Nov 6, 2012
    Because they feel special and think they are performing a public service, they get a sense of gratification.

    It's always been the case since vista or xp people were doing this anyway the KMS has always been exploited, Microsoft are just dumb as always.
     
  19. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,092
    24,400
    340
    What should i update? Info in OP is correct, due to is the long and hard way to do. KMSmicro and the hints to run it is part of APPENDIX and DOWNLOAD section with all the info you need for this. Read post by heldigard, is linked there :D.

    The DMCA MDL got, was caused by stupidity and exposing keys in board, not for providing proper filtered info, just see win loader provided by Daz for example. So what´s your point?

    Don´t think so. Tested myself, that running as admin will give an error. Simply start quemu-start-cmd by double clicking and you go. Activation batches from client have to run with elevated rights only.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  20. antony_blu3

    antony_blu3 MDL Member

    Aug 7, 2012
    192
    37
    10
    Why the new V6 microKMS has no menu at all? The previous one has the menu...