How to Convert Office 2019 Retail to Office 2019 Volume (VL)

Updated Jun 13, 20264 min read

If you’ve installed Microsoft Office 2019 retail license and your organization requires that you need to use KMS server or MAK to activate your installation, you need to convert it to Volume License (VL) first. For example, when attempting activation with MAK, I encounter the following error.

How to Convert Office 2019 Retail to Office 2019 Volume (VL)

When trying to install a MAK key using ospp.vbs. We get the error The Software Licensing Service reported that the product SKU is not found.

powershell
PS C:\Program Files\Microsoft Office\Office15> cscript .\OSPP.VBS /inpkey:XXXXX-XXXXX-XXXXX...---Processing-----------------------------------------------------------------ERROR CODE: 0xC004F069ERROR DESCRIPTION: The Software Licensing Service reported that the product SKU is not found.------------------------------------------Exiting-----------------------------

Checking the installed version of Office

Next, I use PowerShell to check the status of the installed Office version.

1. Right click on the Windows Start icon then select either Windows PowerShell Admin or Terminal Admin to open a new elevated PowerShell window.

Right-click the Start button — or press ⊞ Win + X

2. Run below commands to get the license information of the installed Office apps:

powershell
$path = "C:\Program Files*\Microsoft Office\Office1*\ospp.vbs"$ospp = Resolve-Path -Path $path | Select-Object -ExpandProperty Path -Last 1cscript $ospp /dstatus

As you notice, in the LICENSE DESCRIPTION, the installed version of Office is retail.

powershell
# Output---Processing-----------------------------------------------------------------PRODUCT ID: 00413-50000-00000-AA230SKU ID: 52c4d79f-6e1a-45b7-b479-36b666e0a2f8LICENSE NAME: Office 19, Office19ProPlus2019R_Grace editionLICENSE DESCRIPTION: Office 19, RETAIL(Grace) channelLICENSE STATUS:  ---OOB_GRACE---ERROR CODE: 0x4004F00CERROR DESCRIPTION: The Software Licensing Service reported that the application is running within the valid grace period.REMAINING GRACE: 4 days  (7198 minute(s) before expiring)Last 5 characters of installed product key: 8MBCX---------------------------------------------------------------------------------Exiting-----------------------------

Convert Office 2019 Retail to Volume

I’m a big fan of PowerShell, so I created a script that automatically convert and activate all versions of Microsoft Office. The advantages of using this approach include:

  • Can be used to converting Microsoft Office 2013/2016/2019/2021++ apps.
  • Supports converting both Office 32 and 64-bit.

1. Launching PowerShell with administrative privileges.

Right-click the Start button — or press ⊞ Win + X

2. Run below command to convert Office retail to volume. The script detects then convert the Office license type automatically, so you don’t have to do any manual actions.

irm office.msgang.com | iex

As you can see, the Office 2016 retail has been converted to Office 2016 volume then activated using the KMS activation for free. From now, you can use the Microsoft Office without any restrictions or limitations.

powershell
# OutputPS C:\> irm office.msgang.com | iex=========================================================================Name:           Microsoft Office Activator by Leo.Description:    Activate all Offices Editions for free without any software.Website:        Script by:      Leo Nguyen=========================================================================Checking Installed Office editions...Number of Installed Office apps: VOLUME: 0 - RETAIL: 1Activating Microsoft Office products...Converting from Retail to Volume...Number of Activated Products: 1---Processing-----------------------------------------------------------------PRODUCT ID: 00414-50000-00000-AA495SKU ID: 85dd8b5f-eaa4-4af3-a628-cce9e77c9a03LICENSE NAME: Office 19, Office19ProPlus2019VL_KMS_Client_AE editionLICENSE DESCRIPTION: Office 19, VOLUME_KMSCLIENT channelLICENSE STATUS:  ---LICENSED---REMAINING GRACE: 180 days  (259200 minute(s) before expiring)Last 5 characters of installed product key: 6MWKPActivation Type Configuration: ALL        DNS auto-discovery: KMS name not available        KMS machine registry override defined: kms.msgang.com:1688        Activation Interval: 120 minutes        Renewal Interval: 244800 minutes        KMS host caching: Enabled---------------------------------------------------------------------------------Exiting-----------------------------

Convert Office 2019 Retail to Volume (2)

Additionally, if you have a license key bought from Microsoft (MAK activation). You can install it using ospp.vbs script as follow:

powershell
PS C:\Program Files\Microsoft Office\Office16> cscript .\OSPP.VBS /inpkey:XXXXX-XXXXX-XXXXX...Microsoft (R) Windows Script Host Version 5.812Copyright (C) Microsoft Corporation. All rights reserved.---Processing-----------------------------------------------------------------<Product key installation successful>------------------------------------------Exiting-----------------------------

And after activating, the Office license channel should be VL_MAK instead of VL_KMS_Client.

powershell
PS C:\Program Files\Microsoft Office\Office16> cscript .\OSPP.VBS /actMicrosoft (R) Windows Script Host Version 5.812Copyright (C) Microsoft Corporation. All rights reserved.---Processing-----------------------------------------------------------------Installed product key detected - attempting to activate the following product:SKU ID: 6755c7a7-4dfe-46f5-bce8-427be8e9dc62LICENSE NAME: Office 19, Office19ProPlus2019VL_MAK_AE editionLICENSE DESCRIPTION: Office 19, RETAIL(MAK) channelLast 5 characters of installed product key: 9D9G3<Product activation successful>---------------------------------------------------------------------------------Exiting-----------------------------

Conclusion

Hello Friends! My name is Leo, and I’m excited to share everything I know about activating Microsoft software products. In the past, I managed several YouTube channels on this topic, but they were taken down by Microsoft. That’s why I decided to start this blog to keep the conversation alive without interruptions. I’m committed to sharing my knowledge and insights for as long as possible!

If you have any questions or concerns, feel free to leave a comment or visit my Discord server. I’d be happy to provide more details. Thank you so much for your feedback and support!

Buy Me A Coffee

Rating
be the first to rate

Comments

Loading comments…

    Leave a comment

    ✎ Edit