[HOW-TO/SUPPORT/CHAT] OFFICE C2R Download/Install/Activation

Discussion in 'Microsoft Office' started by s1ave77, Jul 19, 2015.

  1. Leewy

    Leewy MDL Novice

    Joined:
    Oct 24, 2009
    Messages:
    4
    Likes Received:
    3
    Trophy Points:
    0
    @abbodi1406

    I think Visio 2019 and Project 2019 are registered with the wrong license file

    Code:
    cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\ProjectProVL_KMS_Client-ppd.xrm-ms"
    cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\ProjectProVL_KMS_Client-ul-oob.xrm-ms"
    cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\ProjectProVL_KMS_Client-ul.xrm-ms"
    
    cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\VisioProVL_KMS_Client-ppd.xrm-ms"
    cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\VisioProVL_KMS_Client-ul-oob.xrm-ms"
    cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\VisioProVL_KMS_Client-ul.xrm-ms"
    instead of:

    Code:
    cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\ProjectPro2019VL_KMS_Client_AE-ppd.xrm-ms"
    cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\ProjectPro2019VL_KMS_Client_AE-ul-oob.xrm-ms"
    cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\ProjectPro2019VL_KMS_Client_AE-ul.xrm-ms"
    
    cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\VisioPro2019VL_KMS_Client_AE-ppd.xrm-ms"
    cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\VisioPro2019VL_KMS_Client_AE-ul-oob.xrm-ms"
    cscript.exe slmgr.vbs /ilc "C:\Program Files (x86)\Microsoft Office\root\Licenses16\VisioPro2019VL_KMS_Client_AE-ul.xrm-ms"
    
    or is it due to wrong parameter/setting on C2R-R2V-AIO.cmd file?
     
  2. abbodi1406

    abbodi1406 MDL KB0000001

    Joined:
    Feb 19, 2011
    Messages:
    12,069
    Likes Received:
    55,429
    Trophy Points:
    340
    @Leewy

    integrator.exe is used to install licenses for Office 2019/2016
    slmgr.vbs/ospp.vbs are used for Office 2013

    how did you get that?
     
  3. Leewy

    Leewy MDL Novice

    Joined:
    Oct 24, 2009
    Messages:
    4
    Likes Received:
    3
    Trophy Points:
    0
    Honestly, I have no idea how the license file is installed.
    It happens that after I run ospp.vbs /act command,

    I saw Office16 label for Visio and Project. Thus, I run
    Code:
    cscript.exe slmgr.vbs /ilc 
    command to register the Office19 Visio and Project products and thus, am able to register GVLKs for Project Pro 2019 and Visio Pro 2019.
     
  4. Sk4t3

    Sk4t3 MDL Novice

    Joined:
    Jan 20, 2015
    Messages:
    30
    Likes Received:
    24
    Trophy Points:
    0
  5. Leewy

    Leewy MDL Novice

    Joined:
    Oct 24, 2009
    Messages:
    4
    Likes Received:
    3
    Trophy Points:
    0
    #3625 Leewy, Oct 30, 2019
    Last edited: Oct 30, 2019
    @abbodi1406

    I believe there's a bug at line 452 of C2R-R2V-AIO.cmd :
    Code:
    for %%a in (ProjectPro,VisioPro,ProjectStd,VisioStd) do if !_%%a2019! equ 1 (
    echo %%a 2019 SKU
    echo.
    if defined tag (call :InsLic %%a2019) else (call :InsLic %%a)
    )
    Possible fix:
    Code:
    for %%a in (ProjectPro,VisioPro,ProjectStd,VisioStd) do if !_%%a2019! equ 1 (
    echo %%a 2019 SKU
    echo.
    if defined _tag (call :InsLic %%a2019) else (call :InsLic %%a)
    )

    Verified (from debug log):
    - Before fix:
    Code:
    >if !_ProjectPro2019! EQU 1 (
    echo ProjectPro 2019 SKU
     echo.
     if defined tag (call :InsLic ProjectPro2019 )  else (call :InsLic ProjectPro )
    )
    ProjectPro 2019 SKU
    
    
    >set "_ID=ProjectProVolume"
    
    >set "_pkey="
    
    >if not "" == "" (
    set "_ID=ProjectProRetail"
     set "_pkey=PidKey="
    ) 
    - After fix:
    Code:
    >if !_ProjectPro2019! EQU 1 (
    echo ProjectPro 2019 SKU 
     echo.
     if defined _tag (call :InsLic ProjectPro2019 )  else (call :InsLic ProjectPro )
    )
    ProjectPro 2019 SKU
    
    
    >set "_ID=ProjectPro2019Volume"
    
    >set "_pkey="
    
    >if not "" == "" (
    set "_ID=ProjectPro2019Retail" 
     set "_pkey=PidKey="
    )
    
     
  6. abbodi1406

    abbodi1406 MDL KB0000001

    Joined:
    Feb 19, 2011
    Messages:
    12,069
    Likes Received:
    55,429
    Trophy Points:
    340
  7. abbodi1406

    abbodi1406 MDL KB0000001

    Joined:
    Feb 19, 2011
    Messages:
    12,069
    Likes Received:
    55,429
    Trophy Points:
    340
    @Sk4t3

    latest C2R-R2V skip activated retail products from conversion

    but just to be sure, first run the script in non-conversion mode
    edit C2R-R2V.cmd and set _Cnvrt=0

    this will create a debug log
    you can examine yourself to see if your Office 365 will be converted
    look for "O365Business 2016 Suite -> Mondo 2016 Licenses" or "O365SmallBusPrem 2016 Suite -> Mondo 2016 Licenses"
     
  8. Sk4t3

    Sk4t3 MDL Novice

    Joined:
    Jan 20, 2015
    Messages:
    30
    Likes Received:
    24
    Trophy Points:
    0

    Thank You abbodi1406 !!
    =) Thanks Thanks Thanks
     
  9. loady

    loady MDL Novice

    Joined:
    Dec 27, 2013
    Messages:
    8
    Likes Received:
    1
    Trophy Points:
    0
    Hi,

    So windows 10 updated and the office 365 which i had wants activating, i decided to uninstall it and go afresh, looking at office 2019...there is so much information that i am lost as what to do, i have managed to download office 2019 using C2R (i think), anyway, i have an office 19 folder and inside it are cab files and other stuff, i have tried to install it but i am not understanding something, i downloaded dit-x64 and run that but it just throws out an error and closes, any advice greatly appreciated, i just want word, excell,access and outlook, please help me
     
  10. Enthousiast

    Enthousiast MDL Tester

    Joined:
    Oct 30, 2009
    Messages:
    35,567
    Likes Received:
    59,638
    Trophy Points:
    450
    Use YAOCTRI to install it and next you can activate it by using KMS_VL_ALL
     
  11. loady

    loady MDL Novice

    Joined:
    Dec 27, 2013
    Messages:
    8
    Likes Received:
    1
    Trophy Points:
    0
    I must be doing something wrong, so i have already the office 19 folder, i put it into program files, also put YAOCTRI_v7.0 into the root of that folder and run as admin, followed through the prompts and it keeps throwing up this error

    windows cannot find c:\program files\common files\microsoft shared\click to run\office click to run.exe make sure you typed the name correctly and try again
     
  12. Enthousiast

    Enthousiast MDL Tester

    Joined:
    Oct 30, 2009
    Messages:
    35,567
    Likes Received:
    59,638
    Trophy Points:
    450
    You put the office folder in the program files folder?

    This is how to use YAOCTRI with the downloaded files:
    Code:
    |   YAOCTRI_Configurator.cmd
    |   YAOCTRI_Installer.cmd
    |
    \---Office
        \---Data
            |   v32.cab
            |   v32_16.0.12026.20344.cab
            |
            \---16.0.12026.20344
                    i320.cab
                    i321043.cab
                    i640.cab
                    i641043.cab
                    s320.cab
                    s321043.cab
                    stream.x86.nl-NL.dat
                    stream.x86.x-none.dat
    
    Run YAOCTRI_Configurator.cmd
     
  13. peroperopero

    peroperopero MDL Novice

    Joined:
    Jul 17, 2018
    Messages:
    2
    Likes Received:
    0
    Trophy Points:
    0
    I used the tool last night to perform all the steps, from downloading (the 2016 version) to activating, and when I check the activation status, it seems like it's been only activated until April 2020. Does this mean that Office will have to be reactivated in 6 months, or did I miss something? Thank you, and sorry if this has been already answered.
     
  14. Enthousiast

    Enthousiast MDL Tester

    Joined:
    Oct 30, 2009
    Messages:
    35,567
    Likes Received:
    59,638
    Trophy Points:
    450
    KMS activation is 180 days by default, if the used tool provided autorenewal it will be frequently renewed.
     
  15. peroperopero

    peroperopero MDL Novice

    Joined:
    Jul 17, 2018
    Messages:
    2
    Likes Received:
    0
    Trophy Points:
    0
    Thanks so much for the explanation, I use LibreOffice myself, so I haven't been keeping up with the activation methods for Office. Can you please let me know which tool/method should I use for permanent activation,so my relatives don't come chasing after me in 6 months? :)
     
  16. loady

    loady MDL Novice

    Joined:
    Dec 27, 2013
    Messages:
    8
    Likes Received:
    1
    Trophy Points:
    0
    Ok..so I drop the office folder into root of of yaoctri folder where those .CMD filed are ?
     
  17. Enthousiast

    Enthousiast MDL Tester

    Joined:
    Oct 30, 2009
    Messages:
    35,567
    Likes Received:
    59,638
    Trophy Points:
    450
    KMS_VL_ALL, setup with auto-renewal will renew the activation period frequently.
    Yes, but don't place the files and folders in the program files folder.
     
  18. aygul12345

    aygul12345 MDL Junior Member

    Joined:
    Apr 25, 2014
    Messages:
    78
    Likes Received:
    3
    Trophy Points:
    0
    When using this format or hierarchic,
    Code:
    |   YAOCTRI_Configurator.cmd
    |   YAOCTRI_Installer.cmd
    |
    \---Office
        \---Data
            |   v32.cab
            |   v32_16.0.12026.20344.cab
            |
            \---16.0.12026.20344
                    i320.cab
                    i321043.cab
                    i640.cab
                    i641043.cab
                    s320.cab
                    s321043.cab
                    stream.x86.nl-NL.dat
                    stream.x86.x-none.dat
    
    It still cant install on a clean Windows 7.

    Put the same files what it downloads on the Windows 10 copied to an Windows 7 machine. After that running the Configurator it fails.

    What Im doing wrong?

    Yes, Windows 10 is 64 bit, also the Windows 7
     
  19. Chibi ANUBIS

    Chibi ANUBIS MDL Chibi Developer

    Joined:
    Apr 28, 2014
    Messages:
    1,046
    Likes Received:
    713
    Trophy Points:
    60
    Hello ! Is possible to download the ARM64 version ? Thanks :)
     
  20. Enthousiast

    Enthousiast MDL Tester

    Joined:
    Oct 30, 2009
    Messages:
    35,567
    Likes Received:
    59,638
    Trophy Points:
    450
    Post the content of the ini you configurated on 7.