Extension Bug not working

Where does the bug appear (feature/product)?

Cursor IDE

Describe the Bug

i currently have some big problems with all extensions when i want to use it it just says activating extension… but nothing happens its also on my laptop and i dont know why

Steps to Reproduce

Open Project

Operating System

Windows 10/11

Version Information

newest version

Does this stop you from using Cursor

Yes - Cursor is unusable

Hey, this is a known issue with the extension host on Windows. cursor-socket can’t initialize, and all extensions get stuck.

A few things to check:

  1. Open PowerShell as admin and check the contents of the cursor-socket folder:
dir "$env:LOCALAPPDATA\Programs\cursor\resources\app\extensions\cursor-socket"

If you see dist\ but no out\, create a symlink:

cd "$env:LOCALAPPDATA\Programs\cursor\resources\app\extensions\cursor-socket"
New-Item -ItemType SymbolicLink -Name "out" -Target "dist"
  1. Try launching Cursor with a temp profile:
cursor --profile-temp
  1. Turn off Codebase Indexing: Cursor Settings (not VS Code settings) > Indexing & Docs > turn off Codebase Indexing. Then run Ctrl+Shift+P and select Developer: Reload Window.

  2. If nothing helps, go to Help > Toggle Developer Tools > Console, wait for errors, and paste all red entries here.

Also, which Cursor version are you on? Check Help > About.

The team is aware of this issue. There isn’t an exact ETA yet, but your report helps with prioritization.

Let me know how it goes.

Thank you so much bro i really appreciate it <3