[UNSUPPORTED] Universal KMS Activator (KMSA 6.0) Preliminary Tests - Part II

Discussion in 'MDL Projects and Applications' started by Phazor, Jul 4, 2010.

  1. Phazor

    Phazor MDL Expert

    Sep 1, 2009
    1,139
    518
    60
    The disk has nothing to do with this...its all done via network protocol, which means you dont even have to run the app on the PC youre trying to activate.


    The 'Invalid Data' error, a.k.a. 0x8007000D, is a known issue and usually solved by repeating the activation request a couple of times.

    If it keeps failing after say 10 consecutive tries you can try a rearm, which will rebuild the license store and usually solve the problem at once.


    As for the quotation marks in the script; they arent needed in this case, but they would be if a user changed the path to contain any blanks (spaces).
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. jsmithy

    jsmithy MDL Novice

    Jun 5, 2010
    28
    4
    0
    #302 jsmithy, Sep 23, 2010
    Last edited: Sep 23, 2010
    On the second rearm (now I have 1 rearm left), it activated in the 4th try. This an MSI 890FXA-GD70 mainboard based on the 890FX AMD chipset (the latest) released to market on March, 2010.

    Thanks for such a good project and for your exceptional guidance.

    Is there anything else I can do for the project?

    Best regards :)
     
  3. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,255
    675
    60
    #303 MasterDisaster, Sep 28, 2010
    Last edited by a moderator: Apr 20, 2017
    A supplemental batch file for running my script at startup using the Run registry key
    Code:
    @echo off
    set file="%~dp0kms.vbs"
    echo CreateObject("Wscript.Shell").Run """%~dp0KMS_Activator.cmd""", 0, False >%file%
    reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run" /v "KMS" /t REG_SZ /d \"%file%\" /f
    reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v CurrentVersion | Findstr 6.1 >NUL
    IF %ERRORLEVEL% EQU 0 reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform" /v UserOperations /t REG_DWORD /d 1 /f
    reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v CurrentVersion | Findstr 6.0 >NUL
    IF %ERRORLEVEL% EQU 0 reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SL" /v UserOperations /t REG_DWORD /d 1 /f
    reg query "HKLM\SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform" >NUL
    IF %ERRORLEVEL% EQU 0 reg add "HKLM\SOFTWARE\Microsoft\OfficeSoftwareProtectionPlatform" /v UserOperations /t REG_DWOrD /d 1 /f
    pause
    
    Make sure you place this file along with KMS_Activator.cmd and Keygen.exe
    The above batch file needs to be run as Administrator.

    It creates a vbs file that will make the batch file run in invisible mode and an entry "KMS" is added to the Run key.
    Additionally it sets UserOperations property (OfficeSoftwareProtectionPlation in Office 2010, SoftwareProtectionPlatform in 7/R2 or SoftwareLicensing in Vista/2008) to true, that allows to install product key, rearm and activate as a normal user i.e Administrative rights is not required.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. chnix

    chnix MDL Member

    May 16, 2010
    147
    71
    10
    Works in XP or is necessary to make any changes?
     
  5. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,255
    675
    60
    It should work in XP but I haven't tested it yet.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. tokama

    tokama MDL Novice

    Sep 28, 2010
    1
    0
    0
    I run UKMS Beta 6.0 in XP SP3 (chinese verison) and wanna active Win7 Ent., both systems are VMs in the same network and reachable.

    However it automatically SKIP the choice options screen- (1 >> Windows | 2 >> Office) and instant take me to this process return error message...
    1.jpg


    show that port 1688 is opening...
    2.jpg

    I run Z.W.T. keygen.exe (for Win7) in above XP system can work well
     
  7. gmaslin

    gmaslin MDL Novice

    Aug 19, 2010
    43
    1
    0
    Phazor, MasterDisaster, jsmithy

    Does this latest refinement allow all kms installs to lose their origins from the evaluation disk? What I mean to say is, will this remove traces of the evaluation origin on all Server 2008 installations along with the entire MSOffice suite when the proper names are replaced in the dism script method used above? Where can I find a list of proper names for the Microsoft products?
     
  8. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,255
    675
    60
    I have made a small change to the above script, which allows it to work with file path with spaces.

    I tested this on XP and it works flawlessly.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. chnix

    chnix MDL Member

    May 16, 2010
    147
    71
    10
    Excellent. I will try too and give you a feedback later.
     
  10. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,255
    675
    60
    I have updated my script. Check it out.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. chnix

    chnix MDL Member

    May 16, 2010
    147
    71
    10
    #311 chnix, Oct 8, 2010
    Last edited: Oct 8, 2010
    Excellent work!

    The "Product Activation Successful" sound message was a good ideia.

    Only one thing: when I boot up, the activator not appear but the sound continues. It would be nice to not have sound. What do you think?
     
  12. timesurfer

    timesurfer MDL Developer

    Nov 22, 2009
    8,524
    4,112
    270
    No sound OMG sound is "the future" OMG :p...lol

    Yea at start up that could be avoided. With KMS if you can get Keygen tamed by your AV then it works great. I like this new at startup run key that cody started as I remember.

    Tested your new KMS and worked fine MD :D
     
  13. CODYQX4

    CODYQX4 MDL Developer

    Sep 4, 2009
    4,813
    45,775
    150
    #313 CODYQX4, Oct 8, 2010
    Last edited: Apr 15, 2019
    .
     
  14. timesurfer

    timesurfer MDL Developer

    Nov 22, 2009
    8,524
    4,112
    270
    That sucks. I always turn off my UAC. So is it back to dealing with the task problems between OS's?
     
  15. CODYQX4

    CODYQX4 MDL Developer

    Sep 4, 2009
    4,813
    45,775
    150
    #315 CODYQX4, Oct 8, 2010
    Last edited: Apr 15, 2019
    .
     
  16. xclydes

    xclydes MDL Novice

    Dec 7, 2009
    1
    0
    0
    #316 xclydes, Oct 8, 2010
    Last edited: Oct 9, 2010
    Office Verified

    Test and verified to work with Win7 + office 2010.

    Got an error at first but it was due to misinterpretation.

    Great work.

    Edit:
    Confirmed working with winxp xp3 + office 2010.
    Took a while to get it working.
    Got the 0x8007000D error a few time, running the rearm and trying again worked.
     
  17. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,255
    675
    60
    If you don't want voice confirmation just comment out the call :speak "!msg!" line.

    You can edit the script to your own liking.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. chnix

    chnix MDL Member

    May 16, 2010
    147
    71
    10
    You are right. I will do that.

    Thank you.
     
  19. mondlandung

    mondlandung MDL Novice

    Sep 14, 2009
    1
    0
    0
    Hi,

    I try to run the KMS Activator 6.0 under Linux wine.
    Linux Wine quit with error

    Has anyone sucessfully run the KMS Activator under Linux wine and has some hints for missing dll or special settings ?

    Thanks
     
  20. sebus

    sebus MDL Guru

    Jul 23, 2008
    6,384
    2,037
    210
    What for ????

    sebus