Skip to content

Instantly share code, notes, and snippets.

@contactbrenton
Created July 8, 2026 23:17
Show Gist options
  • Select an option

  • Save contactbrenton/bc06e7351a637f29dd4d190890dcd6f9 to your computer and use it in GitHub Desktop.

Select an option

Save contactbrenton/bc06e7351a637f29dd4d190890dcd6f9 to your computer and use it in GitHub Desktop.
Troubleshoot Claude VM Commands

Check if the service is running

Get-Service CoworkVMService

Start the service

Start-Service CoworkVMService

Full restart -- force-kills Claude and restarts the VM in one shot

Stop-Process -Name "Claude" -Force -ErrorAction SilentlyContinue; Start-Service CoworkVMService

Set the service to start automatically on boot

Set-Service CoworkVMService -StartupType Automatic

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment