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
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:
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"
Try launching Cursor with a temp profile:
cursor --profile-temp
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.
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.