Office 2010 Repository

Discussion in 'Application Software' started by WinFLP, Jul 18, 2010.

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

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,256
    674
    60
    The keygen will work even if the firewall permission is set to block all connections. I think firewall kicks in because it opens a port.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. CODYQX4

    CODYQX4 MDL Developer

    Sep 4, 2009
    4,813
    45,775
    150
    I like that that disables XP firewall (too bad it won't work on other firewalls), but I can't figure out why it tries to access internet? I mean it sends the key to your machine without internet access. Also I have blocked it with NIS 2010 and still activated fine using KMS.

    Maybe it is the port though in this case there is no reason not to set it to block vs allow if blocking internet access doesn't hurt it.
     
  3. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,256
    674
    60
    I can't understand what you are pointing at.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. CODYQX4

    CODYQX4 MDL Developer

    Sep 4, 2009
    4,813
    45,775
    150
    As in anyone using any security product and not the built in firewall in windows may throw up a popup as this won't configure that firewall. Though many just let it do its function. I didn't get a warning with NIS but it limited some internet access on it.
     
  5. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,256
    674
    60
    Oh, you meant 3rd party firewalls. In my experience Comodo and ESS have never asked when using the keygen, only Windows Firewall pops up.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. CODYQX4

    CODYQX4 MDL Developer

    Sep 4, 2009
    4,813
    45,775
    150
    Yeah, though I haven't seen any 3rd party firewall complain. I got the XP firewall popup in a VM though. Windows Firewall has sometimes complained about things that operate on networks but not over the internet such as Cisco Packet Tracer.
     
  7. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,256
    674
    60
    I have noticed one more thing with the keygen and Office. If the Keygen is running and Word is opened, osppsvc sends a activation request to the KMS host(Keygen) and it gets processed.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. CODYQX4

    CODYQX4 MDL Developer

    Sep 4, 2009
    4,813
    45,775
    150
    Yeah, that is why I recommend some people do that after a license delete, as sometimes its more successful than running ospp.vbs /act (though it can also get 800700D or whatever that error is).
     
  9. zetitres

    zetitres MDL Member

    Oct 20, 2009
    229
    49
    10
    Have tried to activate with this bat and with the keygen in the same folder, started to work but command windows sudenly dissapeared, did not send any message, so how to check if it has finally been activated?. Used volumen (es-es).
     
  10. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,256
    674
    60
    #70 MasterDisaster, Jul 26, 2010
    Last edited: Jul 26, 2010
    Open Word, File menu -> Help

    If it says Product is Activated, then it worked.

    For seeing status of the product, open cmd promt and type cscript "%PROGRAMFILES%\Microsoft Office\OFFICE14\OSPP.VBS" /dstatus
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. zetitres

    zetitres MDL Member

    Oct 20, 2009
    229
    49
    10
    It is activated, grace 180 days. Thanks.
     
  12. keyner1993

    keyner1993 MDL Novice

    Mar 12, 2009
    16
    0
    0
    Can somebody upload it to a server like Megaupload?, I can't donwload it. It shows me an error.
     
  13. acyuta

    acyuta MDL Expert

    Mar 8, 2010
    1,712
    397
    60
    #74 acyuta, Jul 27, 2010
    Last edited by a moderator: Apr 20, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,256
    674
    60
    It is with quotes. I have italicized only the <your key here> part.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,256
    674
    60
    #76 MasterDisaster, Jul 28, 2010
    Last edited: Jul 28, 2010
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,256
    674
    60
    #77 MasterDisaster, Jul 28, 2010
    Last edited by a moderator: Apr 20, 2017
    The following code will activate Office products individually i.e., it will try to activate a product for a maximum of 10 times until it displays a failure message. Same instructions as before.
    • Place the Keygen along with this batch file
    • Run as Administrator on First run
    Code:
    @echo off
    mode con: cols=60 lines=10
    title Office Volume Activator
    setlocal EnableDelayedExpansion
    wmic path OfficeSoftwareProtectionService where Version='14.0.370.400' call SetKeyManagementServiceMachine MachineName="localhost"  > NUL 2>&1
    start /B /D "%~dp0" Keygen.exe >NUL
    for /f "tokens=2 delims==" %%A in ('"wmic path OfficeSoftwareProtectionProduct where (LicenseStatus^>0 and LicenseFamily LIKE "%%KMS_Client%%") get id /format:list"') do call :activate %%A
    taskkill /IM "Keygen.exe" /F >NUL
    exit
    
    :activate 
    set /a max=0
    set skuid=%1
    call set skuid=!skuid: =!
    cls
    Echo.
    Echo Attempting to activate the following product:
    for /f "tokens=2 delims==" %%x in ('"wmic path OfficeSoftwareProtectionProduct where ID='!skuid!' get Name /format:list"') do set name=%%x
    Echo.
    Echo SKU ID: !skuid!
    Echo Name: !name!
    set /p var=Activation Attempts... <NUL
    :act
    wmic path OfficeSoftwareProtectionProduct where ID='!skuid!' call Activate > NUL 2>&1
    set /a k=0
    set /a max=%max%+1
    set /p var=%max%<NUL
    for /f "tokens=2 delims==" %%x in ('"wmic path OfficeSoftwareProtectionProduct where ID='!skuid!' get GracePeriodRemaining /format:list"') do set gpr=%%x
    if %gpr% lss 259200 set /a k=1
    if %max% lss 10 if %k% EQU 1 goto act
    set /a gpr=%gpr%/60/24
    Echo.
    Echo Remaining Period: %gpr% day(s)
    Echo.
    IF %gpr% EQU 180 ( echo Product Activation Successful
    ) ELSE ( echo Product Activation Failed )
    ping -n 5 localhost > NUL 2>&1
    
    Note: The program will quit automatically after 5 seconds.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. mydigitallifeforum

    mydigitallifeforum MDL Junior Member

    Apr 25, 2010
    81
    7
    0
    #78 mydigitallifeforum, Jul 28, 2010
    Last edited by a moderator: Apr 20, 2017
    MasterDisaster or somebody, can you help? This is the batch file to activate
    Visio 2010 Premium using ZWT's keygen. I say 90% of the time with just 1 try
    and you activate the software. This morning, I had to run this batch file 3 times
    to get it activated, after the 1st and 2nd attempt failed.

    So afterward here's what I did to the batch file, by duplicating the same activation
    command 4 times. There's gotta be a smarter way.
    Code:
    @echo off
    cscript "%PROGRAMFILES%\Microsoft Office\Office14\ospp.vbs" /sethst:127.0.0.1
    Start Keygen.exe
    cscript "%PROGRAMFILES%\Microsoft Office\Office14\ospp.vbs" /act
    cscript "%PROGRAMFILES%\Microsoft Office\Office14\ospp.vbs" /act
    cscript "%PROGRAMFILES%\Microsoft Office\Office14\ospp.vbs" /act
    cscript "%PROGRAMFILES%\Microsoft Office\Office14\ospp.vbs" /act
    taskkill /im Keygen.exe /f
    cscript "%PROGRAMFILES%\Microsoft Office\Office14\ospp.vbs" /remhst
    taskkill /im OSPPSVC.EXE /f
    exit
    
     
  18. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,256
    674
    60
    Yes, there is a smarter way. Look at the code above your post. It automatically retries if activation fails based on the Grace Period Remaining.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  19. timesurfer

    timesurfer MDL Developer

    Nov 22, 2009
    8,527
    4,112
    270
    Can you explain what you mean by retrieve?

    ;)