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
    I didn't say retrieve, i meant retry(ies).
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. timesurfer

    timesurfer MDL Developer

    Nov 22, 2009
    8,527
    4,112
    270
    #82 timesurfer, Jul 29, 2010
    Last edited: Jul 29, 2010
    Hi all,

    Does anyone know what the hash is for this ISO

    MICROSOFT.OFFICE.2010.RTM.14.0.4734.1000_ProfessionalPlus_volume_x64_en-us

    I'm getting this

    MD5: 8072776e05cc57fa53d7dd591bdd0cb1

    Thank you
     
  3. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,256
    674
    60
    14.0.4734 is not RTM, it is the RTM-Escrow build.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. timesurfer

    timesurfer MDL Developer

    Nov 22, 2009
    8,527
    4,112
    270
    Is there a problem or will there be with this ISO? My x86 copy works fine and I thought this would be the x64 version
     
  5. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,256
    674
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. qewlpal

    qewlpal MDL Addicted

    Jun 25, 2010
    575
    2,010
    30
    #86 qewlpal, Jul 29, 2010
    Last edited by a moderator: Apr 20, 2017
    Hi,
    Just tried this script on an already KMS activated office which has 178 days and got this error:
    wmic is not a valid internal or external command..

    I ran the script as Admin and the Keygen and the script are in the same folder..

    Do i need to install the default key again to make it work?

    I wanted to test this script, and to see if i get back the 180 days again..but i couldnt get it work..

    Pls advice what am i doing wrong here..

    It is a clean VL copy(not the Retail to VL converted one) and i used the manual process of setting the host to localhost, calling the /act command and it worked..

    EDIT: Ok i see the script is updated now with the firewall thing removed i guess..i ll try this and report back..
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,256
    674
    60
    I am still working on this script, it is not yet complete. Again I have updated the script now.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. WinFLP

    WinFLP MDL Senior Member

    Nov 18, 2009
    499
    283
    10
  9. qewlpal

    qewlpal MDL Addicted

    Jun 25, 2010
    575
    2,010
    30
    #89 qewlpal, Jul 30, 2010
    Last edited: Jul 30, 2010
    Ok thanks for clarifying..Anyway, here is the screenshot i am getting when trying to run the script:

    office.jpg

    and here is the status of the office i am trying to reset back to 180 days..

    C:\Program Files\Microsoft Office\Office14>cscript ospp.vbs /dstatus
    Microsoft (R) Windows Script Host Version 5.8
    Copyright (C) Microsoft Corporation. All rights reserved.

    ---Processing--------------------------
    ---------------------------------------
    SKU ID: 6f327760-8c5c-417c-9b61-836a98287e0c
    LICENSE NAME: Office 14, OfficeProPlus-KMS_Client edition
    LICENSE DESCRIPTION: Office 14, VOLUME_KMSCLIENT channel
    LICENSE STATUS: ---LICENSED---
    ERROR CODE: 0 as licensed
    Last 5 characters of installed product key: H3GVB
    REMAINING GRACE: 177 days (254483 minute(s) before expiring)
    ---------------------------------------
    ---------------------------------------
    ---Exiting-----------------------------

    As you can see,I added a 'pause' before 'exit' to get this screen..otherwise it just opens and disappears a window and nothing happens after..

    Thanks MasterDisaster for working on this, hope it works after some tweaks:)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,256
    674
    60
    #90 MasterDisaster, Jul 30, 2010
    Last edited by a moderator: Apr 20, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. qewlpal

    qewlpal MDL Addicted

    Jun 25, 2010
    575
    2,010
    30
    #91 qewlpal, Jul 30, 2010
    Last edited by a moderator: Apr 20, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. qewlpal

    qewlpal MDL Addicted

    Jun 25, 2010
    575
    2,010
    30
    MasterDisaster,
    I checked the one line code and it gave the ID, but after i downloaded ran the batch file u gave, i am still getting the same error attached in the previous post..'"wmic.... is not a valid internal or external command..
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. MasterDisaster

    MasterDisaster MDL Expert

    Aug 29, 2009
    1,256
    674
    60
    #93 MasterDisaster, Jul 31, 2010
    Last edited by a moderator: Apr 20, 2017
    Its really baffling why it is not working for you, when wmic can work as standalone why it is giving error when in batch.

    Open command prompt and try this

    Code:
    for /f "tokens=2 delims==" %A in ('"wmic path OfficeSoftwareProtectionProduct where (LicenseStatus^>0 and LicenseFamily LIKE "%%KMS_Client%%") get id /format:list"') do echo %A
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...