claude-code - 💡(How to fix) Fix [Windows] Workspace fails to start - tries to mount non-existent D: drive via Plan9 share [1 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
anthropics/claude-code#46851Fetched 2026-04-12 13:31:23
View on GitHub
Comments
0
Participants
1
Timeline
1
Reactions
0
Participants
Timeline (top)
labeled ×1

Error Message

Failed to start Claude's workspace
failed to add Plan9 share 'd': HcsWaitForOperationResult failed with HRESULT 0x80070003:
{"Error":-2147024893,"ErrorMessage":""}

HRESULT 0x80070003 = "The system cannot find the path specified."

Code Example

Failed to start Claude's workspace
failed to add Plan9 share 'd': HcsWaitForOperationResult failed with HRESULT 0x80070003:
{"Error":-2147024893,"ErrorMessage":""}
RAW_BUFFERClick to expand / collapse

Bug Description

Claude Desktop's workspace fails to start on Windows when the system only has a C: drive. The workspace initialization attempts to mount a D: drive via Plan9 share that does not exist.

Error Message

Failed to start Claude's workspace
failed to add Plan9 share 'd': HcsWaitForOperationResult failed with HRESULT 0x80070003:
{"Error":-2147024893,"ErrorMessage":""}

HRESULT 0x80070003 = "The system cannot find the path specified."

Steps to Reproduce

  1. Have a Windows machine with only a C: drive (no D: drive)
  2. Open Claude Desktop and start a conversation that triggers the workspace
  3. Workspace fails to start with the above error

What I've Tried

  • Restarting Claude Desktop
  • Reinstalling the workspace via the "reinstall the workspace" link in the error dialog
  • Neither resolved the issue

Expected Behavior

The workspace should only attempt to mount drives that actually exist on the system.

Environment

  • OS: Windows 11 Enterprise 10.0.26100
  • Drives: C: only (no D: drive)

Screenshot

The error appears as a modal dialog in the Claude Desktop app.

extent analysis

TL;DR

Modify the workspace initialization to check for existing drives before attempting to mount them, specifically avoiding the non-existent D: drive.

Guidance

  • Verify the list of available drives on the system before initializing the workspace to prevent attempting to mount non-existent drives.
  • Consider adding a check for the presence of a D: drive specifically, since it's the culprit in this case, and skip the mounting process if it's not found.
  • Review the Plan9 share configuration to ensure it's not hardcoded to expect a D: drive, and update it to be more dynamic or configurable if necessary.
  • Test the workspace initialization with different drive configurations to ensure the fix is robust and doesn't introduce new issues.

Example

No explicit code example can be provided without more context on the implementation details, but the idea would be to add a conditional check before calling the HcsWaitForOperationResult method to ensure the drive exists.

Notes

The provided error message and HRESULT suggest a straightforward issue of attempting to access a non-existent path. However, without access to the specific code or configuration files, the exact implementation of the fix cannot be determined.

Recommendation

Apply a workaround by modifying the workspace initialization to dynamically check for existing drives, as this directly addresses the root cause of the issue without requiring additional dependencies or upgrades.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING