Waboom AI
AI Training

AI Training

AI Team TrainingPopular

Hands-on workshops for marketing, sales, operations, and customer service teams.

AI Strategy Workshop

Executive workshops for leadership teams. Identify opportunities. Calculate ROI. Walk out with a roadmap.

Claude Code Workshop

Build apps in hours not months. Ship websites, automations, and tools with AI.

AI Training for Teams

AI Training for Teams

Hands-on workshops for marketing, sales, operations, and customer service teams. Not theory. Real tools. Real tasks. Real outcomes.

2,000+ people trained across NZ

Learn more
AI Automation

AI Automation

AI Agents & AutomationPopular

Your AI workforce: outbound, proposals, knowledge and support agents. Find buyers, write SOWs, answer every call.

AI Retainer Support

Already built with us? Stay on retainer and we keep shipping new agents and features for your business.

Microsoft Copilot Agents

Build custom Copilot agents in Power Automate & Copilot Studio. Automate workflows across your entire Microsoft 365 ecosystem.

Waboom Concierge

Personalised inbound for premium brands. An AI concierge greets every visitor, builds an on-the-spot quote, and books a real conversation.

AI Automation & Integration

AI Automation & Integration

We build faster and more cost effectively than traditional development teams. You tell us the problem. We deliver the solution.

30+ projects live in 24 months

Learn more
AI Voice Agents

AI Voice Agents

AI Voice Agents

24/7 AI-powered phone agents for inbound & outbound calls. Never miss a lead, handle enquiries, book appointments automatically.

AI Receptionist

Pay-as-you-go inbound receptionist. Answers, transfers calls, takes messages inside your VoIP. $1/min with auto top-up.

Voice Agent Pricing

Transparent pricing for AI voice agents. See costs per minute and platform fees.

AI Voice Agent Demo

Talk to Michelle on three voice AI engines side by side. Hear the latency, find the model that fits.

Listen to Our Voices

Preview all 32 AI voice agents across NZ, AU, UK and US. Find the perfect voice for your brand.

Case Studies

Real customer results. Vendor leads, viewings booked, relationships scaled. Every story has the math.

AI Voice Agents

AI Voice Agents

Never miss a lead. AI agents that answer calls 24/7, qualify prospects, and book appointments automatically.

30+ voice agents deployed

Learn more
Case Studies

Case Studies

Melbourne: 5 listings from one 14-year dormant contactPopular

$2.9M of CBD apartments relisted by the same agent who sold them in 2012. AI dialled the dormant number.

Home builder: AU$374.4M in lost sales uncovered

5,200 cold calls into a 70,000-prospect CRM. 234 confirmed lost deals at AU$1.6M each. A very leaky bucket.

Sydney agent: 141 vendor leads in 90 days

9,856 dials, 1,997 conversations, 141 warm-transferred sellers at $32.74 each.

Christchurch developer: 49 viewings in 14 days

931 Meta leads called same-day. 49 viewings booked at $7.12 each.

City Sales Auckland: 100,000+ relationships

How a leading Auckland firm strengthened over 100,000 client relationships with AI.

See all case studies

Browse every Waboom customer case study in one place.

Real numbers from real Waboom customers

Real numbers from real Waboom customers

Vendor leads. Viewings booked. Relationships scaled. Every story has the math.

5,000+ AI-handled conversations

Learn more
Resources

Resources

AI Resources & Guides

Free templates, frameworks, and implementation guides to help you adopt AI effectively in your organisation.

Blog

Expert insights on AI voice agents, automation strategies, and industry best practices from the Waboom team.

Workshop Tutorial Videos

Paid-attendee video library. Cowork 101 and Claude Code 101, on demand with clickable chapter navigation.

AI Resources Hub

AI Resources Hub

Free tools and guides to help you implement AI effectively. From policy templates to ROI calculators.

New resources added monthly

Learn more
Contact

Contact

Contact Us

Get in touch with our team. We'd love to hear about your AI goals.

About Waboom AI

Learn about our mission, team, and why we're passionate about AI adoption in NZ.

Let's Talk AI

Let's Talk AI

Whether you need training, automation, or strategy - we're here to help you adopt AI effectively.

Response within 24 hours

Learn more
09 885 9695 (NZ)+61 485 027 479 (AU)
The fix Anthropic hasn't documented

Claude Cowork won't install on Windows? The error message lies.

If you're seeing AddPackage failed with HRESULT 0x80073CF8, Windows is reporting “user cancelled the install”. You didn't. Here's what's actually happening, and the playbook that fixes it.

Does this match your symptoms?

✓

Administrator access is required to install Claude with full features

✓

Installation failed: AddPackage failed with HRESULT 0x80073CF8

✓

Installation failed: AddPackage failed with HRESULT 0x80073CF6

✓

Installer hangs for 5 minutes then fails silently

✓

Installing without Cowork also fails

✓

Running as Administrator and using winget didn't help

If you've already tried wsreset, Developer Mode, and PowerShell cleanup with no luck, this guide is for you.

Why this is happening (and why generic fixes don't work)

Cowork isn't just a feature inside the Claude Desktop app. It's a VM-based agent runtime that installs a Windows service called CoworkVMService and requires the Virtual Machine Platform Windows feature to be enabled. Three things stack up against you on a fresh Windows 11 machine:

1. A previous failed install left a wedged package

Anthropic's installer ignores RemovePackage failures and tries AddPackage anyway. That leaves Claude in a partially-registered state that's invisible to a normal uninstall but still claims the package family name. Every retry now fails with 0x80073CF8 or 0x80073CF6. This is the most common cause and matches the symptoms in Anthropic GitHub issues #49917, #49540 and #37443.

2. Virtual Machine Platform is off

On most Windows 11 Home machines, especially Intel Core Ultra laptops shipped in 2025+, Virtual Machine Platform is disabled by default. Cowork's installer can't register its sub-package without it, and the AppX deployment pipeline aborts mid-flight, surfacing as 0x80073CF8.

3. CoworkVMService is holding registry locks

If the service started during a half-installed attempt, it locks files in the AppX state repository. The new installer can't delete them, so RemovePackage fails. Result: more wedge.

Real-talk caveat

Cowork on Windows 11 build 26200 has multiple unresolved bugs on Anthropic's side right now. There's a real chance even a clean attempt fails because of an upstream issue you can't fix. If the playbook below doesn't work, scroll down to If it still fails.

The Playbook

Run these top to bottom

Each step is a copy-paste block. Don't skip any. Total time: about 20 minutes including the reboot.

1

Open elevated PowerShell

Press the Windows key, type powershell, right-click Windows PowerShell, choose Run as administrator, then accept the UAC prompt.

Every command below assumes you're inside this elevated PowerShell window.

2

Stop the leftover Cowork service

If a previous install half-finished, this releases the file locks holding the package wedge in place.

Run this
Stop-Service CoworkVMService -Force -ErrorAction SilentlyContinue
Get-Process | Where-Object { $_.Name -match 'cowork|claude' } | Stop-Process -Force -ErrorAction SilentlyContinue
3

Force-remove every trace of Claude

This is the actual fix for the wedged-package state. It clears every variant: current user, all users, provisioned, plus residual app data.

Run this
Get-AppxPackage -AllUsers *Claude* | Remove-AppxPackage -AllUsers -ErrorAction SilentlyContinue
Get-AppxProvisionedPackage -Online | Where-Object { $_.DisplayName -like "*Claude*" } | Remove-AppxProvisionedPackage -Online -ErrorAction SilentlyContinue
Remove-Item "$env:LOCALAPPDATA\Claude" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item "$env:LOCALAPPDATA\AnthropicClaude" -Recurse -Force -ErrorAction SilentlyContinue
4

Enable Virtual Machine Platform

Cowork's hard prerequisite. If this feature is off, Cowork cannot install. Full stop.

Run this
dism.exe /Online /Enable-Feature /All /FeatureName:VirtualMachinePlatform /NoRestart
dism.exe /Online /Enable-Feature /All /FeatureName:HypervisorPlatform /NoRestart
5

Reboot the laptop

Not optional. Virtual Machine Platform won't take effect until you reboot.

Save anything important first, then restart. Reopen elevated PowerShell after Windows comes back up.

6

Repair the Windows component store

Catches the build 26200 regression and any corrupted system files that could trip the next install.

Run this
DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow

These take a few minutes each. Let them finish.

7

Pause antivirus real-time scanning

Some antivirus products (notably McAfee LiveSafe, which ships preinstalled on most Lenovo and HP laptops) quarantine MSIX staging files mid-install. Open your antivirus, turn off real-time scanning for an hour, do the install, then turn it back on.

If you've already removed McAfee or you only use Microsoft Defender, skip this step.

8

Reinstall Claude Desktop fresh

Download a fresh copy of the installer from claude.ai/download. Right-click it, choose Run as administrator, accept the UAC prompt, leave the Cowork option enabled, and let it run.

With the wedge cleared, VMP enabled, and antivirus paused, this is the install that finally takes.

If it still fails

Capture the real error so you (or we) can escalate to Anthropic with the actual log. Run these in elevated PowerShell after the install fails again:

Capture install logs to your Desktop
Get-AppxLog | Out-File "$env:USERPROFILE\Desktop\claude-appx-log.txt"
Copy-Item "$env:LOCALAPPDATA\Temp\ClaudeSetup.log" "$env:USERPROFILE\Desktop\" -ErrorAction SilentlyContinue

Two text files will land on your desktop. The real HRESULT and the failing sub-step are in there. Send them to Anthropic support. Or to us if you came from a Waboom workshop.

The pragmatic fallback

If the playbook fails twice and you need Claude working today, install Claude Desktop without Cowork (untick the Cowork option during install). Chat, projects, file uploads, and connectors all still work. You only lose the agent and computer-use features.

For most workshop attendees, that's 90% of the value with zero install pain. Cowork can wait until Anthropic ships a 26200 fix.

Sources & references

  • →Microsoft AppX troubleshooting & HRESULT reference
  • →Anthropic GitHub #49917: wedged MSIX after failed RemovePackage
  • →Anthropic GitHub #49540: Cowork install fails with HRESULT 0x80073CF6
  • →Anthropic GitHub #49655: CoworkVMService locks blocking update
  • →Anthropic GitHub #37443: Build 26200 AppX regression
  • →Claude Help Center: Deploy Claude Desktop for Windows
Once it's working

Now actually use Cowork properly

Getting Cowork installed is the easy bit. The real magic is teaching it your voice, connecting your tools, and turning it into your second brain. Our 8-step setup guide walks you through it.

Set up Cowork properly→

Last updated 30 April 2026 · by Leonardo Garcia-Curtis

Waboom AI

Empowering New Zealand and Australian businesses with AI voice agents and automation that deliver real, measurable value.

info@waboom.ai+64 9 885 9695 (NZ)+61 485 027 479 (AU)
Level 8, 139 Quay Street
Auckland CBD, New Zealand

Voice Agents

  • AI Voice Agents
  • AI Receptionist NZ
  • AI Receptionist Australia
  • AI Phone Answering
  • AI Virtual Receptionist
  • AI Receptionist Pay As You Go
  • Waboom Concierge
  • Medical Answering Service
  • Answering Service Australia
  • AI Sales Agent
  • Voice Agent Pricing
  • Listen to Voices
  • Real Estate Guide

By Industry

  • Real Estate
  • Mortgage Brokers
  • Insurance Brokers
  • Property Managers
  • Medical Clinics
  • Dentists
  • Vets
  • Childcare + ECE
  • Car Dealerships
  • Construction + Builders
  • Electricians
  • Plumbers
  • HVAC
  • Accountants
  • Law Firms
  • All industries and regions

Workshops

  • All Workshops
  • AI Team Training
  • AI Strategy Workshop
  • AI Champion Workshop
  • Claude Team Training
  • Claude Code Workshop
  • Lovable Workshop
  • Free AI Workshop

Automation

  • AI Automation
  • Microsoft Copilot Agents
  • Integrations

Company

  • About Us
  • Contact
  • Partners
  • Pipedrive Partner
  • Resources
  • Blog
  • AI Agency NZ
  • AI Agency Australia

Powered by leading AI technologies

VAPIOpenAIZapierMakeStripe

© 2026 Waboom.ai. All rights reserved.

PrivacyTermsSecurity