KMS-QADhooker for Localhost Self-Activation

Discussion in 'Windows 10' started by xinso, Apr 17, 2014.

  1. xinso

    xinso MDL Guru

    Mar 5, 2009
    12,695
    13,692
    340
    Is KMS solution capable to activate OEM:DM device?
     
  2. xinso

    xinso MDL Guru

    Mar 5, 2009
    12,695
    13,692
    340
    #542 xinso, Oct 20, 2014
    Last edited by a moderator: Apr 20, 2017
    (OP)
    I managed the lightweight Win8.1SE (OS or PE in RAM) to behave like normal WinPE in this way:

    1. Mount sources\boot.wim (or bootx86.wim/bootx64.wim)

    2. Reg load \Windows\System32\config\SYSTEM to HKEY_LOCAL_MACHINE\S

    3. Modify the registry value as
    Code:
    [HKEY_LOCAL_MACHINE\S\Setup]
    "CmdLine"="startnet.cmd"
    4. Reg unload HKEY_LOCAL_MACHINE\S

    5. Copy get_win8key.exe to \Windows\

    6. Modify \Windows\System32\startnet.cmd, like

    startnet.cmd
    Code:
    for /f "tokens=* delims=" %%i in ('X:\Windows\get_win8key.exe') do if errorlevel 0 set KEY=%%i
    if defined KEY @echo Your Product Key is %KEY%
    pause
    7. Delete \Windows\System32\winpeshl.ini if existed

    8. Unmount sources\boot.wim

    get_win8key.png
     
  3. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    Yeah, diskpart in chinese looks interesting :D.

    Better mask the PID :cool2:.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. xinso

    xinso MDL Guru

    Mar 5, 2009
    12,695
    13,692
    340
    Thanks, Slave77.

    Does it matter? It's dummy key spread all over even here at MDL.

    Besides that, it's in picture, I cannot.
     
  5. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    Ahhh ... thought it might be your own ... should be no problem then :D.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. nechrist

    nechrist MDL Guide Pack

    Apr 24, 2010
    326
    163
    10
    @xinso

    Can you repost your guide to make the Office 2013 CTR image version up to date? I managed to download the newest version with the ODT tools but i can't make the image working. thank you
     
  7. xinso

    xinso MDL Guru

    Mar 5, 2009
    12,695
    13,692
    340
    #547 xinso, Oct 24, 2014
    Last edited by a moderator: Apr 20, 2017
    (OP)
    Office 2013 CTR? I've forgotten about it hundred years ago.

    Please wait. I'll start it over asap.

    [DOWNLOAD]

    download.cmd
    Code:
    @echo off
    pushd "%~dp0"
    
    :X86
    setup.exe /download download\ProPlusRetail_x86.xml
    :setup.exe /download download\StandardRetail_x86.xml
    :setup.exe /download download\ProjectProRetail_x86.xml
    :setup.exe /download download\ProjectStdRetail_x86.xml
    :setup.exe /download download\VisioProRetail_x86.xml
    :setup.exe /download download\VisioStdRetail_x86.xml
    :setup.exe /download download\AccessRetail_x86.xml
    :setup.exe /download download\ExcelRetail_x86.xml
    :setup.exe /download download\GrooveRetail_x86.xml
    :setup.exe /download download\InfoPathRetail_x86.xml
    :setup.exe /download download\LyncRetail_x86.xml
    :setup.exe /download download\OneNoteRetail_x86.xml
    :setup.exe /download download\OutlookRetail_x86.xml
    :setup.exe /download download\PowerPointRetail_x86.xml
    :setup.exe /download download\PublisherRetail_x86.xml
    :setup.exe /download download\SPDesignerRetail_x86.xml
    :setup.exe /download download\WordRetail_x86.xml
    
    :X64
    :setup.exe /download download\ProPlusRetail_x64.xml
    :setup.exe /download download\StandardRetail_x64.xml
    :setup.exe /download download\ProjectProRetail_x64.xml
    :setup.exe /download download\ProjectStdRetail_x64.xml
    :setup.exe /download download\VisioProRetail_x64.xml
    :setup.exe /download download\VisioStdRetail_x64.xml
    :setup.exe /download download\AccessRetail_x64.xml
    :setup.exe /download download\ExcelRetail_x64.xml
    :setup.exe /download download\GrooveRetail_x64.xml
    :setup.exe /download download\InfoPathRetail_x64.xml
    :setup.exe /download download\LyncRetail_x64.xml
    :setup.exe /download download\OneNoteRetail_x64.xml
    :setup.exe /download download\OutlookRetail_x64.xml
    :setup.exe /download download\PowerPointRetail_x64.xml
    :setup.exe /download download\PublisherRetail_x64.xml
    :setup.exe /download download\SPDesignerRetail_x64.xml
    :setup.exe /download download\WordRetail_x64.xml
    download\ProPlusRetail_x86.xml
    Code:
    <Configuration>
    
      <Add SourcePath="O15CTR\ProPlusRetail_x86" OfficeClientEdition="32" >
        <Product ID="ProPlusRetail">
          <Language ID="en-us" />
        </Product>
      </Add>
    
    </Configuration>
    download\ProPlusRetail_x64.xml
    Code:
    <Configuration>
    
      <Add SourcePath="O15CTR\ProPlusRetail_x64" OfficeClientEdition="64" >
        <Product ID="ProPlusRetail">
          <Language ID="en-us" />
        </Product>
      </Add>
    
    </Configuration>



    [SETUP]

    O15CTR\ProPlusRetail_x86\Setup.cmd
    Code:
    @echo off
    pushd "%~dp0"
    
    setup.exe /configure ProPlusRetail_x86.xml
    
    pause
    O15CTR\ProPlusRetail_x86\ProPlusRetail_x86.xml
    Code:
    <Configuration>
    
      <Add SourcePath="\Office\" OfficeClientEdition="32" >
    
        <Product ID="ProfessionalRetail">
    
          <Language ID="en-us" />
    
        </Product>
    
      </Add>
    
      <Display Level="Full" AcceptEULA="TRUE" />
    
    </Configuration>

    O15CTR\ProPlusRetail_x64\Setup.cmd
    Code:
    @echo off
    pushd "%~dp0"
    
    setup.exe /configure ProPlusRetail_x64.xml
    
    pause
    O15CTR\ProPlusRetail_x86\ProPlusRetail_x64.xml
    Code:
    <Configuration>
    
      <Add SourcePath="\Office\" OfficeClientEdition="64" >
    
        <Product ID="ProfessionalRetail">
    
          <Language ID="en-us" />
    
        </Product>
    
      </Add>
    
      <Display Level="Full" AcceptEULA="TRUE" />
    
    </Configuration>
    Note:
    1. Please copy setup.exe to where setup.cmd is.
    2. Don't specify version to suit all versions.
     
  8. nechrist

    nechrist MDL Guide Pack

    Apr 24, 2010
    326
    163
    10
    Yeah, i know how to download the last current version of the single products. The problem is that when i have the files downloaded and need to update the original iso (ex: word2013retail.img) which is the not updated version i overwrite the old files with the new ones, update the iso but when i'll start the setup nothing happend.
     
  9. xinso

    xinso MDL Guru

    Mar 5, 2009
    12,695
    13,692
    340
    #549 xinso, Oct 24, 2014
    Last edited: Oct 24, 2014
    (OP)
    overwrite the old files with the new ones? Let me see ...

    I think that you are trying to maintain the setup GUI for the new version, right?
     
  10. nechrist

    nechrist MDL Guide Pack

    Apr 24, 2010
    326
    163
    10
    #550 nechrist, Oct 24, 2014
    Last edited by a moderator: Apr 20, 2017
  11. xinso

    xinso MDL Guru

    Mar 5, 2009
    12,695
    13,692
    340
    #551 xinso, Oct 24, 2014
    Last edited by a moderator: Apr 20, 2017
    (OP)
  12. nechrist

    nechrist MDL Guide Pack

    Apr 24, 2010
    326
    163
    10
    I see, but at that time it worked flawless i remember. I can't understand why it's not working anymore... :( Could you add the option to activate the ctr version again? :worthy:
     
  13. xinso

    xinso MDL Guru

    Mar 5, 2009
    12,695
    13,692
    340
    Did you mean RET to KMS conversion and activate?
     
  14. nechrist

    nechrist MDL Guide Pack

    Apr 24, 2010
    326
    163
    10
    yep. like before :)
     
  15. xinso

    xinso MDL Guru

    Mar 5, 2009
    12,695
    13,692
    340
    #555 xinso, Oct 24, 2014
    Last edited: Nov 1, 2014
    (OP)
  16. nechrist

    nechrist MDL Guide Pack

    Apr 24, 2010
    326
    163
    10
    Thank you a lot xinso! You are amazing! ;)
     
  17. xinso

    xinso MDL Guru

    Mar 5, 2009
    12,695
    13,692
    340
    #557 xinso, Oct 25, 2014
    Last edited: Oct 25, 2014
    (OP)
    On Windows 8.1, substitute the whole old Data folder with new one.

    Worked!

    (Tested under Windows 8.1 with Update x86 and x64 - offline.)

    Are the rest files for other builds - 8/7?

    (IMHO, if not SuperComputer, x86 is enough.)
     
  18. nechrist

    nechrist MDL Guide Pack

    Apr 24, 2010
    326
    163
    10
    I did the same thing but in my tests the setup isn't starting in any ways, i don't know why. I'm starting to thinking that it's a vmware bug... By the way i switched to a simple batch command for automatize the manual installation which is better to manage for future updates ;)
     
  19. Chibi ANUBIS

    Chibi ANUBIS MDL Chibi Developer

    Apr 28, 2014
    1,237
    911
    60
    Is great my friend ! I have updated my post ! :worthy:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  20. xinso

    xinso MDL Guru

    Mar 5, 2009
    12,695
    13,692
    340
    #560 xinso, Oct 29, 2014
    Last edited: Oct 29, 2014
    (OP)
    Thanks a lot for your contribution.