Cowork installation fails at 80% on Windows - EXDEV cross-device link error
Preflight Checklist
- [x] I have searched existing issues and this hasn't been reported yet
- [x] This is a single bug report (please file separate reports for different bugs)
- [x] I am using the latest version of Claude Code
What's Wrong?
Cowork installation consistently fails at exactly 80% every time with an EXDEV: cross-device link not permitted error. I have never been able to get Cowork running since purchasing it.
System details:
Windows 11
C: drive (main system drive)
F: drive (Data)
G: drive (Google Drive for Desktop)
AppData\Roaming\Claude is on C:
What I have tried:
Directed workspace files to C:\Users\User\Cowork Files to keep everything on C:
Paused Google Drive for Desktop during installation attempt
Contacted support - agent Fin advised he was unable to help further
Why I am reporting here:
I found the existing issue #25136 regarding yukonSilver and CoworkVMService which appears related. The consistent 80% failure point suggests the installer is hitting the same step every time. This does not appear to be a user error - I have followed all troubleshooting suggestions provided by support.
What Should Happen?
Cowork should install completely and launch successfully without errors.
Error Messages/Logs
EXDEV: cross-device link not permitted. Installation consistently stops at 80% every attempt. AppData\Roaming\Claude is on C: drive. Additional drives present: F: (Data) and G: (Google Drive for Desktop). Workspace files directed to C:\Users\User\Cowork Files. Error persists even with Google Drive paused.
Steps to Reproduce
- Download and run Claude Desktop installer on Windows with multiple drives present (C:, F:, G:)
- Proceed through installation
- Installation reaches 80% and stops every time
- EXDEV: cross-device link not permitted error occurs
Note: Issue persists regardless of workspace file location or whether Google Drive is paused.
Claude Model
None
Is this a regression?
No, this never worked
Last Working Version
_No response_
Claude Code Version
N/A - Claude Desktop installation issue
Platform
Anthropic API
Operating System
Windows
Terminal/Shell
PowerShell
Additional Information
This is a Cowork installation issue on Claude Desktop for Windows, not a Claude Code issue. Installation has never succeeded. Support agent Fin confirmed he was unable to help further. Issue may be related to GitHub issue #25136 (yukonSilver unsupported + CoworkVMService conflict). System has three drives: C: (system), F: (Data), G: (Google Drive for Desktop).
11 Comments
Found 3 possible duplicate issues:
This issue will be automatically closed as a duplicate in 3 days.
🤖 Generated with Claude Code
"This is not a duplicate — I am adding an additional report to confirm this issue is still occurring as of April 2026 on a fully updated Windows system. Please keep open."
I have now identified the exact root cause of my issue by reviewing related reports #27897, #30584, #34605, #36642 and #38457.
The installer downloads rootfs.vhdx to the Windows Temp folder and then attempts to move it using fs.rename() to AppData\Roaming\Claude\vm_bundles. The MSIX sandbox treats these as separate devices even though both are on C:, so Windows blocks the rename with EXDEV. The app then deletes the downloaded file and loops indefinitely — which is why it always fails at exactly 80%.
This has been reported repeatedly since February 2026 and the fix is well understood: replace fs.rename() with fs.copyFile() + fs.unlink() as a fallback when EXDEV is encountered.
There is no user-side workaround. I have tried redirecting workspace files, pausing Google Drive, and various other suggestions from support. None can work because the issue is in the app's file handling code, not in my system configuration.
I have been unable to use Cowork since purchasing it on 2nd April 2026. I would appreciate confirmation that a fix is in progress and an estimated timeframe.
@apengelly22-prog What version of Claude Desktop are you on? The EXDEV issue should be fixed in
1.569.0, if it's not please drop your logs below<img width="984" height="324" alt="Image" src="https://github.com/user-attachments/assets/5247eaa5-4e40-4c7a-aac1-eb1f257fad3c" />
<img width="498" height="782" alt="Image" src="https://github.com/user-attachments/assets/a6f09701-2192-47de-8366-141799f50195" />
<img width="1039" height="423" alt="Image" src="https://github.com/user-attachments/assets/bdbb3125-c3a7-4fb2-8900-680882921439" />
Thank you for responding. I am on version 1.569.0 but still getting the EXDEV error. The paths are now both on C: rather than crossing drives, so something has changed, but it is still failing:
'C:\Users\User\AppData\Roaming\Claude\vm_bundles\claudevm.bundle.wvm-tmp-rn8Rqw\rootfs.vhdx' -> 'C:\Users\User\AppData\Roaming\Claude\vm_bundles\claudevm.bundle\rootfs.vhdx'
I have tried reinstalling the workspace twice. Still failing.
I had the same EXDEV error at exactly 80%. In my case the root cause was the Windows "Where new content is saved" setting pointing to a different drive.
Check this: Settings > System > Storage > Advanced storage settings > Where new content is saved. If "New apps will save to" is set to anything other than C:\, change it to C:\.
You can verify if this is your issue by running in PowerShell:
Get-ChildItem "$env:LOCALAPPDATA\Packages\Claude_pzs8sxrjxfjjc" | Format-Table Name, Attributes, Target
If you see symlinks (ReparsePoint) pointing to another drive like F:\ or G:\, that's the cause.
Also, since you have Google Drive installed, the CldFlt driver might be intercepting the rename operation. Try pausing Google Drive completely and also check if disabling CldFlt helps (though that will also disable Google Drive sync).
Full diagnostic tool here: https://github.com/LozadAPP/claude-cowork-windows-fix
How do i fix this error please?
<img width="1189" height="601" alt="Image" src="https://github.com/user-attachments/assets/2cca18f0-1f55-4969-aa6f-e40020ab4fe4" />
That's the issue right there! All your symlinks point to F:\WpSystem\ instead of C:\. Same problem I had but with D:\.
First, backup your config before doing anything:
New-Item -Path "$env:USERPROFILE\Desktop\Claude_Backup" -ItemType Directory -Force
Copy-Item "$env:APPDATA\Claude\claude_desktop_config.json" "$env:USERPROFILE\Desktop\Claude_Backup\" -ErrorAction SilentlyContinue
This saves your MCP servers and preferences. You can restore it after reinstalling.
Now the fix:
Get-AppxPackage -Name "Claude" | Remove-AppxPackage
Remove-Item "$env:APPDATA\Claude" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item "$env:LOCALAPPDATA\Claude" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item "C:\ProgramData\Claude" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item "$env:LOCALAPPDATA\Packages\Claude_pzs8sxrjxfjjc" -Recurse -Force -ErrorAction SilentlyContinue
Remove-Item "F:\WpSystem\*\AppData\Local\Packages\Claude_pzs8sxrjxfjjc" -Recurse -Force -ErrorAction SilentlyContinue
Copy-Item "$env:USERPROFILE\Desktop\Claude_Backup\claude_desktop_config.json" "$env:APPDATA\Claude\" -ErrorAction SilentlyContinue
Full guide and diagnostic tool: https://github.com/LozadAPP/claude-cowork-windows-fix
RESOLVED — SVM Mode disabled in BIOS was the root cause
I am happy to report that Cowork is now working perfectly after 5 days of troubleshooting!
For anyone else experiencing this issue, here is the complete chain of fixes that resolved it for me:
Step 1 — The EXDEV error
My Windows setting "Where new content is saved" (Settings > System > Storage > Advanced storage settings) was set to F: instead of C:. This caused MSIX to create symlinks pointing to F:, which caused the EXDEV cross-device error. Changing this to C:, doing a complete clean uninstall and reinstalling Claude Desktop resolved the EXDEV error.
Step 2 — Virtualization not available
After resolving EXDEV, Cowork showed a new error: "Virtualization is not available." Although VirtualMachinePlatform and HypervisorPlatform were enabled in Windows, SVM Mode (AMD CPU Virtualization) was disabled in the BIOS/UEFI firmware. Enabling SVM Mode under Advanced > CPU Configuration in the BIOS and rebooting resolved this completely.
Cowork is now running beautifully.
Thank you sincerely to everyone who responded and helped, particularly MarshallOfSound and the creator of the diagnostic tool. Your help was invaluable. I hope this helps other Windows users with similar setups. 🎉
This issue has been automatically locked since it was closed and has not had any activity for 7 days. If you're experiencing a similar issue, please file a new issue and reference this one if it's relevant.