Contents
Office 2019 is the next on-premises version of Word, Excel, PowerPoint, Outlook, Project, Visio, Access, and Publisher. The new enhancements in Office 2019 are a subset of a long list of features that have been added to Office 365 ProPlus over the last three years. Office 2019 is a one-time release and won’t receive future feature updates.
The image of office 2019 retail version is valid to download, but the volumn version cannot be found. So the post will introduce the official way to install office 2019.
NOTE: Say goodbye to the old version of office before you continue 😄
Install Office Deployment Tool
Download the program from the following website, and double click to extract the content to a specific path.
https://www.microsoft.com/en-us/download/details.aspx?id=49117
Configure the XML
You can use the following sample to install the office 2019 exclude some apps.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
<Configuration> <Add OfficeClientEdition="64" Channel="PerpetualVL2019"> <Product ID="ProPlus2019Volume"> <Language ID="en-us" /> <ExcludeApp ID="Publisher" /> <ExcludeApp ID="Lync" /> <ExcludeApp ID="OneDrive" /> <ExcludeApp ID="Groove" /> <ExcludeApp ID="Access" /> </Product> <Product ID="VisioPro2019Volume"> <Language ID="en-us" /> </Product> <Product ID="ProofingTools"> <Language ID="en-us" /> <Language ID="zh-cn" /> </Product> </Add> <Updates Enabled="TRUE" Channel="Monthly" /> <Display Level="None" AcceptEULA="TRUE" /> <!-- <Property Name="AUTOACTIVATE" Value="1" /> --> </Configuration> |
Install Office 2019
Using the following command to download the installation file.
1 |
setup /download configuration.xml |
Also, you can directly download the package which I have compressed.
https://yhiblog-dff34.1d35.starter-us-east-1.openshiftapps.com/?/Software/office2019.zip
Don’t forget to check the sha256 value of file.
1 |
SHA256: C2939FAF28B863D60263FDDB4040C93AFF04663DC861772CAABA229D21787793 |
After download the content, running the command with the administrative privileges to install.
1 |
setup /configure configuration.xml |
Activate Office 2019
Using the official keys and kms server to enjoy the full features.
1 2 3 |
Office Professional Plus 2019: NMMKJ-6RK4F-KMJVX-8D9MJ-6MWKP Visio Professional 2019: 9BGNQ-K37YR-RQHF2-38RQ3-7VCBB Project Professional 2019: B4NPR-3FKK7-T2MBV-FRQ4W-PKD2B |
More keys provided by Microsoft:
https://docs.microsoft.com/en-us/deployoffice/vlactivation/gvlks
And the kms can find in the previous post:
Microsoft——KMS Activation
Reference
- https://docs.microsoft.com/en-us/deployoffice/office2019/deploy
- https://docs.microsoft.com/en-us/deployoffice/configuration-options-for-the-office-2016-deployment-tool
bsuh here