DAX Driver Issues after installing Windows 11 cumulative update KB5079473
After installing Windows 11 cumulative update KB5079473, my station entered a failure state that broke multiple layers of the OS — and completely crippled SmartSDR, DAX, and CAT.
This was not a typical “DAX driver didn’t install” situation. This was a deep Windows subsystem failure involving:
- DAX audio endpoint enumeration
- SmartSDR installation
- CAT virtual serial ports
- Windows AppX provisioning
- Microsoft Store
- Snipping Tool
- Audio endpoint registration (MMDevice)
- Add-AppxPackage / Remove-AppxPackage failures
Root Cause: camsvc (Capability Access Manager Service) was disabled and corrupted
This service is responsible for:
- App capability registration
- AppX manifest processing
- System app initialization
- Store app provisioning
- Capability extensions used by audio and device registration
When camsvc is broken, Windows cannot:
- Register DAX endpoints
- Install SmartSDR cleanly
- Register system apps
- Install Store apps
- Rebuild AppX packages
Error signatures included:
0x80070422: windows.capability extension: The service cannot be started
WIN32_EXIT_CODE 1077 (“no attempt was made to start the service”)
Symptoms FlexRadio Users Will See
SmartSDR / DAX / CAT
- DAX endpoints missing or stuck as “Unknown Device”
- DAX drivers failing to install
- CAT ports not enumerating
- SmartSDR installer failing silently
Windows
- Snipping Tool missing
- Store missing Install/Open buttons
- System apps failing to register
- AppX errors
- Audio subsystem corruption
The Fix: In‑Place Windows 11 Repair Upgrade
This is the supported, non-destructive way to rebuild Windows core services without wiping your FlexRadio environment.
What the repair install fixed:
- Rebuilt camsvc
- Repaired AppX subsystem
- Restored Snipping Tool and system apps
- Repaired Microsoft Store
- Rebuilt MMDevice audio registry hive
- Repaired DriverStore metadata
- Restored DAX endpoint enumeration
- Restored CAT virtual serial ports
What it preserved:
- SmartSDR
- DAX/CAT configs
- Stream Deck profiles
- VPN
- Registry tweaks
- Interface metrics
- All apps and data
How to perform an In‑Place Windows 11 Repair Upgrade
Download the Windows 11 ISO from Microsoft’s official site.
Mount the ISO (right‑click → Mount).
Run setup.exe from the mounted drive.
Choose:
Keep personal files and apps
Install Windows 11
Let Windows reinstall itself (20–40 minutes, several reboots).
Log back in — your environment is preserved, but Windows core components are rebuilt.
Troubleshooting Commands
Check camsvc status
Get-Service camsvc
Check if camsvc is disabled
Get-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Services\camsvc -Name Start
Enable camsvc (if Start = 4)
Set-ItemProperty HKLM:\SYSTEM\CurrentControlSet\Services\camsvc -Name Start -Value 3
Start-Service camsvc
Query service details
sc.exe query camsvc
Check audio endpoints (DAX readiness)
Get-PnpDevice -Class AudioEndpoint
![]() |

Comments