← Reddit

[WINDOWS] After an update of the Claude Desktop App, a windows dialogue error pops up preventing you to re-open the application, killing its process in the task manager does not help. Here's the workaround. Hope they patch it.

Reddit · sum117 · June 18, 2026
A Windows dialogue error prevents the Claude Desktop App from reopening after updates, even when killing processes through the task manager. The workaround involves adding a PowerShell function to the profile that stops the CoworkVMService and related processes, enabling the application to launch normally.

Detailed Analysis

A post-update bug in Anthropic's Claude Desktop App for Windows has been documented by a user on the r/ClaudeAI subreddit, wherein a Windows dialog error renders the application unable to relaunch after receiving an automatic update. The failure is notable in its persistence: the standard user remedy of killing the offending process via Task Manager proves ineffective, leaving affected users locked out of the application until a deeper intervention is performed. The root of the issue appears to involve a background service — `CoworkVMService` — along with associated processes tied to the Windows app installation path (`C:\Program Files\WindowsApps\Claude*`) and the Anthropic data directory (`%APPDATA%\Claude*`), including components such as `chrome-native-host.exe` and a `cowork-svc` or `ChromeNativeHost` subprocess. This architecture points to Claude Desktop's reliance on a multi-process model with embedded service infrastructure, a design pattern common in Electron-based desktop applications.

The community-provided workaround consists of a PowerShell function, `Stop-Claude-Cowork`, which forcibly terminates the `CoworkVMService` Windows service and then uses `Get-CimInstance` to query and kill all related processes by executable path or command-line signature. The author recommends persisting this function inside the user's PowerShell profile (`$PROFILE`) so it is immediately available in any future shell session. After executing the function, the application can be reopened normally. This kind of community-authored remediation is a practical stopgap but underscores the absence of a graceful update recovery mechanism in the current release — a gap the original poster explicitly hopes Anthropic will address in a future patch.

The bug is symptomatic of a known friction point in desktop application update pipelines, particularly for software distributed through the Microsoft Store or Windows App packager, where stale or orphaned service processes from a prior installation version can conflict with the newly deployed binaries. The presence of `CoworkVMService` is especially significant: the "Cowork" nomenclature suggests a virtualization or sandboxing layer, potentially related to how Claude Desktop manages local compute resources or model inference components. If this service does not cleanly shut down and restart during an update cycle, it can create a deadlock where the new application version cannot initialize because the old service instance still holds relevant handles or ports.

Broadly, this incident reflects the growing complexity of AI-native desktop clients as they evolve beyond simple chat interfaces. Anthropic's Claude Desktop App has expanded in capability — supporting features like Model Context Protocol (MCP) integrations, local tool use, and potentially lightweight on-device computation — and this expanded architecture introduces correspondingly more failure surface during version transitions. The community's rapid generation and dissemination of a precise PowerShell fix, complete with inline documentation and profile-persistence guidance, demonstrates the technical sophistication of Claude's user base and the degree to which power users are willing to engage at a systems level to maintain access to the tool. It also illustrates the informal support ecosystem that often fills gaps during the fast-moving release cadences typical of competitive AI product development, where velocity of feature deployment can temporarily outpace quality assurance for edge-case update scenarios on diverse Windows environments.

Read original article →