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-
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.
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
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.
wotok two versions wotok autoit: https://forums.mydigitallife.net/posts/1467291/ wotok cmd: https://forums.mydigitallife.net/posts/1414279/ wotok autoit still does not have all the features try wotok cmd (more features)(old version, need to modify the code, example vl key)
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