[DISCUSSION] Microsoft Office 2019

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

  1. AndyMutz

    AndyMutz MDL Senior Member

    Jun 30, 2011
    343
    639
    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. cocotus.interruptus

    cocotus.interruptus MDL Junior Member

    Sep 8, 2014
    71
    61
    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.
     
  3. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,190
    90,665
    340
    You may edit start_setup.cmd and try this fix
    https://forums.mydigitallife.net/posts/1465266/
     
  4. se7an

    se7an MDL Novice

    Oct 9, 2014
    17
    2
    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
     
  5. LostED

    LostED SVF Patch Lover

    Jul 30, 2009
    7,183
    21,302
    240
    have you tried what is on 1st page ?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. Krakatoa

    Krakatoa MDL Addicted

    Feb 22, 2011
    688
    1,131
    30
  7. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,190
    90,665
    340
    Yes it will

    but there are no MSI Office 2019
     
  8. doumasn

    doumasn MDL Novice

    Mar 5, 2012
    7
    0
    0
    In which installer or ISO I can use GVL keys???
     
  9. cengizhan

    cengizhan MDL Senior Member

    Jul 29, 2009
    478
    154
    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.
     
  10. Terminator90

    Terminator90 MDL Novice

    Jul 30, 2015
    7
    4
    0
    Hi, where can I download these ISOs ?
     
  11. LostED

    LostED SVF Patch Lover

    Jul 30, 2009
    7,183
    21,302
    240
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. simone89s

    simone89s MDL Novice

    Jan 17, 2016
    1
    0
    0
  13. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,190
    90,665
    340
    C2R is forced to install on system drive, no other option
     
  14. sidjames45

    sidjames45 MDL Junior Member

    Dec 13, 2012
    78
    295
    0
  15. goodflood

    goodflood MDL Member

    Feb 16, 2011
    112
    11
    10
  16. Krakatoa

    Krakatoa MDL Addicted

    Feb 22, 2011
    688
    1,131
    30
    #879 Krakatoa, Oct 4, 2018
    Last edited: Oct 4, 2018
  17. ColdZero

    ColdZero MDL Android 17

    Nov 9, 2009
    704
    3,227
    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