Administrator
Published on 2024-12-18 / 5 Visits
0
0

Cursor禁止自动更新 & 解决白嫖限制问题

禁止自动更新

Cursor更新目录在 %USERPROFILE%\AppData\Local\cursor-updater\ , 将此文件夹删除, 并创建一个同名的文件即可解决, 也可更改此文件夹的访问修改权限, 改为全部拒绝

白嫖限制问题

Cursor在免费订阅期间出现以下提示: Too many free trial accounts used on this machine. Please upgrade to pro. We have this limit in place to prevent abuse. Please let us know if you believe this is a mistake.

1. 关闭Cursor

2. 修改 storage.json 文件

- Windows: %APPDATA%\Cursor\User\globalStorage\storage.json

- macOS: ~/Library/Application Support/Cursor/User/globalStorage/storage.json

- Linux: ~/.config/Cursor/User/globalStorage/storage.json

3. 修改 storage.json 文件内容

{
  "telemetry.machineId": "生成新的uuid",
  "telemetry.macMachineId": "生成新的uuid",
  "telemetry.devDeviceId": "生成新的uuid",
  "telemetry.sqmId": "生成新的uuid",
  "lastModified": "2024-01-01T00:00:00.000Z",
  "version": "1.0.1"
}


Comment