You tried to run the conversion while Outlook, Word, or Excel was still open in the background. The licensing service locks the registry keys, preventing conversion.
This is the only method Microsoft officially supports. You must completely eradicate all traces of the Retail installation before installing the Volume version.
Step 1: Use the Official Microsoft SARA Tool
Step 2: Manual Registry Cleanup
ClickToRun or Licensing.HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\ClickToRun\ConfigurationStep 3: Delete Physical Folders
Step 4: Reboot
Step 5: Install Volume Version
Microsoft Office 2019 introduces a strict division between Retail (consumer) and Volume Licensing (VL) channels. Unlike older Office versions (e.g., Office 2016), Office 2019’s Click-to-Run (C2R) technology prevents direct in-place conversion from Retail to Volume licensing through simple product key or license file swaps. The error “Detected Office 2019 C2R Retail could not be converted to Volume” occurs when an automated tool attempts this conversion and fails due to fundamental architectural differences.
For system administrators managing fleets of computers:
Attempting third-party “retail-to-volume” conversion on Office 2019 C2R can: You tried to run the conversion while Outlook,
Unlike older versions (Office 2016 and earlier) that used traditional MSI installers, Office 2019 exclusively uses Click-to-Run (C2R) technology. C2R streams installation files and updates via the internet. While this improves update efficiency, it complicates licensing.
To understand why this error appears, you must first understand how Microsoft changed the game with Office 2019.
Before deploying Office 2019 Volume, run a PowerShell script to check for existing Retail artifacts: This is the only method Microsoft officially supports
Get-WmiObject -Class Win32_Product | Where-Object $_.Name -like "*Office 2019*" | ForEach-Object
if ($_.IdentifyingNumber -like "*Retail*")
Write-Host "Retail detected. Aborting Volume install."
exit 1