We’ve received reports that the VXL Live Add‑in is not working in Excel after a recent Microsoft update.
<aside> 👋
Root cause seems to be related to a change in how Office caches Add-in.
The issue can be resolved by clearing the Add‑in cache, or by refreshing the Add-in. Please see the instructions below.
</aside>
Original source Clear the Office cache - Office Add-ins | Microsoft Learn
Below is a PowerShell script that can be deployed to clear the cache:
# Must run in user context
# Ideally run this script upon user logon to avoid issues with running Office processes
$officeProcesses = @('EXCEL', 'WINWORD', 'POWERPNT', 'OUTLOOK', 'ONENOTE', 'VISIO')
$running = Get-Process -Name $officeProcesses -ErrorAction SilentlyContinue
if ($running) {
$names = ($running | Select-Object -ExpandProperty ProcessName | Sort-Object -Unique) -join ', '
Write-Warning "Cannot clear cache—these Office apps are open."
return
}
$cachePath = Join-Path $env:LOCALAPPDATA 'Microsoft\\Office\\16.0\\Wef'
if (Test-Path $cachePath) {
Write-Host "Clearing cache: $cachePath"
try {
Remove-Item -LiteralPath $cachePath -Recurse -Force -ErrorAction Stop
New-Item -ItemType Directory -Path $cachePath | Out-Null
Write-Host 'Done.'
}
catch {
Write-Warning "Failed to clear cache; some files may be locked. Close Office apps and try again."
}
}
else {
Write-Host "Cache folder not found: $cachePath"
}