URGENT problems with activation . windows 8.1 pro build 9600

Discussion in 'Windows 8' started by karankhannalive, Jul 7, 2014.

  1. karankhannalive

    karankhannalive MDL Novice

    Jul 7, 2014
    19
    0
    0
    how to do that now ? please explain
     
  2. Bytebuster

    Bytebuster MDL Addicted

    Apr 30, 2013
    551
    203
    30
    Nobody here is making fun of your problem - ...despite the fact that 'we' believe you'd be better off starting from scratch and install from original M$ media, people are trying to help you sorting your problem. o_O
     
  3. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. karankhannalive

    karankhannalive MDL Novice

    Jul 7, 2014
    19
    0
    0
    Can you tell how many days this will survive ?
     
  5. Nucleus

    Nucleus MDL Guru

    Aug 4, 2009
    2,868
    2,950
    90
    #45 Nucleus, Jul 7, 2014
    Last edited: Jul 7, 2014
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. jayblok

    jayblok MDL Guru

    Dec 26, 2010
    3,199
    2,579
    120
    :biggrin:
    Change the surplus of jargon
     
  7. EFA11

    EFA11 Avatar Guru

    Oct 7, 2010
    8,719
    6,741
    270
    when that dialog pops up for script host, CTRL+C and it will copy all text. no need for pictures :D but I do like pictures lmao very creative and blue!
     
  8. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    The Licensing is completely messed :cool2:. It will at least continue nagging, not sure what comes next :g:.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. mohamedkamel

    mohamedkamel MDL Addicted

    Jul 5, 2011
    542
    167
    30
    May I ask, what is your problem to start from scratch by using an "Original Untouched ISO"?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,104
    24,378
    340
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. SpeedDream

    SpeedDream MDL Addicted

    Feb 20, 2012
    619
    121
    30
    what error? copy paste like they told you, in the results window you can ctrl-c to copy

    looks like this, when fine:

    ---------------------------
    Windows Script Host
    ---------------------------
    Software licensing service version: 6.3.9600.16497






    Name: Windows(R), Professional edition


    Description: Windows(R) Operating System, VOLUME_KMSCLIENT channel


    Activation ID: 00000000-d7fd-4a35-b7b4-054742b7af67


    Application ID: 00000000-d682-4d71-983e-d6ec3f16059f


    Extended PID: 000000-02615-000-000000-03-1033-9600.0000-1852014


    Product Key Channel: Volume:GVLK


    Installation ID: 000000000090366038620499684304163906781334368360075834945505762


    Partial Product Key: 9D6T9


    License Status: Licensed


    Volume activation expiration: 254830 minute(s) (177 day(s))


    Remaining Windows rearm count: 1000


    Remaining SKU rearm count: 1001


    Trusted time: 7/8/2014 1:09:21 AM


    Configured Activation Type: KMS






    Most recent activation information:


    Key Management Service client information


    Client Machine ID (CMID): 00000000-ae4a-495a-9465-07722ef3bc7d


    Registered KMS machine name: 0


    KMS machine IP address: 0


    KMS machine extended PID: 00000-00206-271-223411-03-1033-7601.0000-0952014


    Activation interval: 120 minutes


    Renewal interval: 10080 minutes


    KMS host caching is enabled








    ---------------------------
    OK
    ---------------------------

    replaced couple of values with 0s

     
  12. Dos_Probie

    Dos_Probie MDL Senior Member

    Jul 18, 2012
    250
    86
    10
    #53 Dos_Probie, Aug 2, 2014
    Last edited by a moderator: Apr 20, 2017
    Why Kms when you can go Permanent!

    I just recently (last 10 days) went thru all of this with a clean install (not upgrade) activation for Windows 8.1 ProWMC iso that I got off the net,
    it also came with a kms activation (using KMSpico) which btw was Only good for 45 days. I decided to try one of the free upgrade keys for WMC and it works perfect with permanent activation now, I set everything up via the setupcomplete.cmd method where I added my own activation script (see my snippet of code below) and copied over my token files then once at the desktop everything is activated without the watermark etc.
    ~DP ;)
    Code:
     @set @jscript=1/*
     @echo off&color a
     @setlocal enableextensions
     pushD "%~dp0" & cd /d "%~dp0"
     :: ~DosProbie - 07.26.2014 - SetupComplete.cmd
    :: -------------------------------------------------
    :: ### AUTO-ELEVATE PERMISSIONS..
     reg query "hku\S-1-5-19" >nul 2>&1 || (
     @cscript //e:jscript //nologo "%~f0" "%~f0"
     goto :eof
     )
    :: -------------------------------------------------
    :: ### =-=-= Offline ACTIVATION For Windows 8.1 ProfessionalWMC Edition =-=-=
     timeout /t 5 /nobreak>nul
     %~dp0\vbs\StartActivation.vbs
    :: ### VARIABLES..
     Set "PathCache=%systemroot%\System32\spp\store\2.0\cache"
     Set "PathToken=%systemroot%\System32\spp\store\2.0"
     Set "FileToken=tokens.dat"
     Set "FileCache=cache.dat"
     Set "FileData=data.dat"
     Set cpy=xcopy /sqiy
     Set srv=sppsvc
    :: Step1. ### CHECK THEN STOP THE FILE PROTECTION SERVICE IF RUNNING..
     sc query %1 | find "%srv%">nul 2>&1 
     if not .%errorlevel%.==.1. goto disableservice
     goto takedown
    :disableservice
     taskkill /f /im %srv% /t>nul 2>&1&timeout /t 2 > nul
     sc config %srv% start=disabled>nul 2>&1&net stop %srv%>nul 2>&1
     goto takedown
    :: net stop sppsvc>nul 2>&1
     :takedown
     cls 
     echo The "Software Protection Service" Is Not Running..
     echo.
     timeout /t 2 /nobreak>nul
     takeown /f %systemroot%\System32\spp\store\2.0 /A /R>nul
     takeown /a /f %PathCache%\%FileCache%>nul&icacls %PathCache%\%FileCache% /Grant *S-1-5-32-544:F>nul
     takeown /a /f %PathToken%\%FileToken%>nul&icacls %PathToken%\%FileToken% /Grant *S-1-5-32-544:F>nul
     takeown /a /f %PathToken%\%FileData%>nul&icacls %PathToken%\%FileData% /Grant *S-1-5-32-544:F>nul
     cls
     echo Taking Ownership Of Token Files are now all Done!
     echo.
     timeout /t 2 /nobreak>nul
    :: Step2. ### DELETE ORGINAL TOKEN INSTALL FILES THEN COPY OVER PRE-ACTIVATED FILES..
     del "%systemroot%\System32\spp\store\2.0\cache\cache.dat" /S /Q>nul
     del "%systemroot%\System32\spp\store\2.0\tokens.dat" /S /Q>nul
     del "%systemroot%\System32\spp\store\2.0\data.dat" /S /Q>nul
     del /AH "%systemroot%\System32\spp\store\2.0\data.dat" /S /Q>nul
     cls
     echo The Orginal Token Files Have Been Removed!
     echo. 
     timeout /t 2 /nobreak>nul
    :: Step3. ### COPY BACKUP OF TOKENS FROM PREVIOUS ACTIVATION.. 
     %cpy% "%~dp0act\Backup_Tokens\*.*" "%windir%\system32\spp\store\2.0\">nul
     cls
     echo Your Backup Tokens Have Copied Over Successfully!
     echo. 
     timeout /t 2 /nobreak>nul
    :: Step4. ### Parse Config File For User Defined WMC Product Key then Set To Variable..
     pushD "%~dp0" & cd /d "%~dp0"
     Set InputFile=%~dp0act\config.txt
     For /F "Tokens=*" %%A In (%InputFile%) Do (Set "PK=%%A")
     cls
     echo Activating Windows 8.1 ProfessionalWMC Edition..
     echo.
     echo With Key: %PK%
     echo.
     timeout /t 2 /nobreak>nul
      
    :: Step5. ### ENTERS YOUR FREE WMC UPGRADE KEY THEN ACTIVATES..
     cscript //nologo "%Windir%\System32\slmgr.vbs" /ipk %PK%
     echo.
     cls
     timeout /t 2 /nobreak>nul
    :: -------------------------------------------------
    :: ### RESTART 4 CHANGES..
       shutdown -r -t 0
    :: -------------------------------------------------
     :eof
     // ### RUNAS ADMIN..
     */
     var strArg = WScript.Arguments(0);
     var objSH = WScript.CreateObject("Shell.Application");
     objSH.ShellExecute(strArg, "", "", "runas", "5");
    
     
  13. murphy78

    murphy78 MDL DISM Enthusiast

    Nov 18, 2012
    7,389
    11,614
    240
    #54 murphy78, Aug 2, 2014
    Last edited by a moderator: Apr 20, 2017
    ProWMC keys are single-hardware tied.
    You could probably get 2 systems activated with phone activation, but there's some things you need to be aware of.
    1- Windows contacts the Activation server every single day.
    2- WAT is not gone, just mostly dormant. It has previously nerfed the kms data.dat prowmc exploit and it could very well nerf these generic tokens exploits.
    3- The Activation name server reports your ip to a data collection company (Mark Monitor) when it does its reporting.

    When you consider these points, the KMS activation is actually superior if you are not using your own personal key.
     
  14. Snuffy

    Snuffy MDL Expert

    Jan 7, 2008
    1,262
    626
    60
    There are some REALLY good versions of Pre-Activated Windows on TORRENTS. Not that I use them, but I have lots of "time invested in getting them help" when they use Pre-Activated.
    MDL folks do make some nice AIOs and Pre-Activated, so several questions should be ask first before "Clean install only". and many of the same Questions ask on MDL often get ask on OTHER FORUMS. also,
    as we know 99% of them never come back to say thinks, on any of the SITES...
    Hey @ Murphy78. your AOK in my book. :)
     
  15. Smorgan

    Smorgan Glitcher

    Mar 25, 2010
    1,855
    1,051
    60
    Can we just make a sin count of how many times a person tries pre-activated and fails. Then proceeds to throw every activation related thing at Windows 8.1?

    (Yawns)

    I like the advise of cleaning the tokens but it seems you be in good shape now.

    Murphy78, WAT is no longer applicable to Windows 8 as they rewrote the activation licensing for Windows 8 according to the extensive documentation I have.