[DISCUSSION] Microsoft Office 2019

Discussion in 'Microsoft Office' started by ratzlefatz, Sep 26, 2017.

  1. AndyMutz

    AndyMutz MDL Senior Member

    Joined:
    Jun 30, 2011
    Messages:
    272
    Likes Received:
    547
    Trophy Points:
    10
    he is probably referring to my post https://forums.mydigitallife.net/threads/discussion-microsoft-office-2019.75232/page-22#post-1465344
    I suspect that onenote is truly a 2016 version and it is just displayed as 2019 in the about info, because of the whole office package being version 2019.

    -andy-
     
  2. abbodi1406

    abbodi1406 MDL KB0000001

    Joined:
    Feb 19, 2011
    Messages:
    12,067
    Likes Received:
    55,424
    Trophy Points:
    340
  3. cocotus.interruptus

    cocotus.interruptus MDL Junior Member

    Joined:
    Sep 8, 2014
    Messages:
    71
    Likes Received:
    61
    Trophy Points:
    0
    You have wrong product keys installed. Use

    Code:
    cscript "c:\Program Files\Microsoft Office\Office16\OSPP.VBS" /dstatus
    
    to check and

    Code:
    cscript "c:\Program Files\Microsoft Office\Office16\OSPP.VBS" /inpkey:value
    
    to install proper gVLK keys for Office 2019.
     
  4. abbodi1406

    abbodi1406 MDL KB0000001

    Joined:
    Feb 19, 2011
    Messages:
    12,067
    Likes Received:
    55,424
    Trophy Points:
    340
    You may edit start_setup.cmd and try this fix
    https://forums.mydigitallife.net/posts/1465266/
     
  5. se7an

    se7an MDL Novice

    Joined:
    Oct 9, 2014
    Messages:
    17
    Likes Received:
    2
    Trophy Points:
    0
    Guys i downloaded office 2019 from wzor links. When i try to install it install all apps . But i need word and excel only.. i am confused.... help me
     
  6. LostED

    LostED SVF Patch Lover

    Joined:
    Jul 30, 2009
    Messages:
    6,477
    Likes Received:
    17,572
    Trophy Points:
    210
    have you tried what is on 1st page ?
     
  7. Krakatoa

    Krakatoa MDL Addicted

    Joined:
    Feb 22, 2011
    Messages:
    563
    Likes Received:
    893
    Trophy Points:
    30
  8. doumasn

    doumasn MDL Novice

    Joined:
    Mar 5, 2012
    Messages:
    7
    Likes Received:
    0
    Trophy Points:
    0
  9. abbodi1406

    abbodi1406 MDL KB0000001

    Joined:
    Feb 19, 2011
    Messages:
    12,067
    Likes Received:
    55,424
    Trophy Points:
    340
    Yes it will

    but there are no MSI Office 2019
     
  10. doumasn

    doumasn MDL Novice

    Joined:
    Mar 5, 2012
    Messages:
    7
    Likes Received:
    0
    Trophy Points:
    0
    In which installer or ISO I can use GVL keys???
     
  11. cengizhan

    cengizhan MDL Senior Member

    Joined:
    Jul 29, 2009
    Messages:
    465
    Likes Received:
    151
    Trophy Points:
    10
    you are right. i have installed my Office 2016 mak key to Office 2019 and then magically office 2019 turned to office 2016. bu still shown as Office 2019 in application list.
     
  12. crazyuser

    crazyuser MDL Junior Member

    Joined:
    Aug 14, 2016
    Messages:
    62
    Likes Received:
    19
    Trophy Points:
    0
  13. Terminator90

    Terminator90 MDL Novice

    Joined:
    Jul 30, 2015
    Messages:
    3
    Likes Received:
    1
    Trophy Points:
    0
    Hi, where can I download these ISOs ?
     
  14. LostED

    LostED SVF Patch Lover

    Joined:
    Jul 30, 2009
    Messages:
    6,477
    Likes Received:
    17,572
    Trophy Points:
    210
  15. simone89s

    simone89s MDL Novice

    Joined:
    Jan 17, 2016
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    0
  16. abbodi1406

    abbodi1406 MDL KB0000001

    Joined:
    Feb 19, 2011
    Messages:
    12,067
    Likes Received:
    55,424
    Trophy Points:
    340
    C2R is forced to install on system drive, no other option
     
  17. sidjames45

    sidjames45 MDL Junior Member

    Joined:
    Dec 13, 2012
    Messages:
    78
    Likes Received:
    294
    Trophy Points:
    0
  18. goodflood

    goodflood MDL Member

    Joined:
    Feb 16, 2011
    Messages:
    100
    Likes Received:
    10
    Trophy Points:
    10
  19. Krakatoa

    Krakatoa MDL Addicted

    Joined:
    Feb 22, 2011
    Messages:
    563
    Likes Received:
    893
    Trophy Points:
    30
    #879 Krakatoa, Oct 4, 2018
    Last edited: Oct 4, 2018
  20. ColdZero

    ColdZero MDL Addicted

    Joined:
    Nov 9, 2009
    Messages:
    680
    Likes Received:
    3,073
    Trophy Points:
    30
    Guys, i need help with a little script.
    I want to convert retail Office 2019 Pro Plus + Visio Pro + Project Pro to volume editions
    Code:
    @echo off
    color 1F
    
    set "_SLMGR=%SystemRoot%\System32\slmgr.vbs"
    
    cd /d "C:\Program Files\Microsoft Office\root\Licenses16"
    
    for /f "delims=" %%i in ('dir /b /on client-issuance-*.xrm-ms') do (
    cscript //Nologo //B %_SLMGR% /ilc %%i
    )
    
    cscript //Nologo //B %_SLMGR% /ilc pkeyconfig-office.xrm-ms
    
    REM MISSING STEP FOR VISIO PRO
    cscript //Nologo //B %_SLMGR% /ilc %%i
    
    REM MISSING STEP FOR PROJECT PRO
    cscript //Nologo //B %_SLMGR% /ilc %%i
    
    The purpose is to fully understand the conversion from retail to volume.
    Thanks