煎饼果子卷鲨鱼辣椒 079a7bb9b2
Merge pull request #30 from realies/master
feat: lean automated releases
2024-12-14 22:57:19 +08:00
2024-12-14 05:00:33 +00:00
2024-12-14 05:00:33 +00:00
2024-12-14 05:00:33 +00:00
2024-12-14 05:00:33 +00:00
2024-12-14 05:00:33 +00:00

🚀 Cursor Free Trial Reset Tool

🌟 English

📝 Description

Resets Cursor's free trial limitation when you see:

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.

💻 System Support

Windows AMD64 & ARM64
macOS AMD64 & ARM64
Linux AMD64 & ARM64

📥 Installation

Linux/macOS

curl -fsSL https://raw.githubusercontent.com/yuaotian/go-cursor-help/master/install.sh | bash

Windows (Run in PowerShell as Admin)

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; $arch = if ([Environment]::Is64BitOperatingSystem) { if ([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture -eq 'Arm64') { 'arm64' } else { 'amd64' } } else { 'amd64' }; $ver = (irm https://api.github.com/repos/yuaotian/go-cursor-help/releases/latest).tag_name.TrimStart('v'); $outfile = "$env:TEMP\cursor_id_modifier.exe"; irm "https://github.com/yuaotian/go-cursor-help/releases/download/v${ver}/cursor_id_modifier_${ver}_windows_${arch}.exe" -OutFile $outfile; & $outfile; Remove-Item -Path $outfile -ErrorAction SilentlyContinue

🔧 Technical Details

The program modifies Cursor's storage.json config file:

  • Windows: %APPDATA%\Cursor\User\globalStorage\
  • macOS: ~/Library/Application Support/Cursor/User/globalStorage/
  • Linux: ~/.config/Cursor/User/globalStorage/

Generates new unique identifiers for:

  • telemetry.machineId
  • telemetry.macMachineId
  • telemetry.devDeviceId
  • telemetry.sqmId

🌏 Chinese

📝 问题描述

当看到以下提示时重置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.

💻 系统支持

Windows AMD64和ARM64
macOS AMD64和ARM64
Linux AMD64和ARM64

📥 安装方法

Linux/macOS

curl -fsSL https://raw.githubusercontent.com/yuaotian/go-cursor-help/master/install.sh | bash

Windows (以管理员身份运行PowerShell)

Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; $arch = if ([Environment]::Is64BitOperatingSystem) { if ([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture -eq 'Arm64') { 'arm64' } else { 'amd64' } } else { 'amd64' }; $ver = (irm https://api.github.com/repos/yuaotian/go-cursor-help/releases/latest).tag_name.TrimStart('v'); $outfile = "$env:TEMP\cursor_id_modifier.exe"; irm "https://github.com/yuaotian/go-cursor-help/releases/download/v${ver}/cursor_id_modifier_${ver}_windows_${arch}.exe" -OutFile $outfile; & $outfile; Remove-Item -Path $outfile -ErrorAction SilentlyContinue

🔧 技术细节

程序修改Cursor的storage.json配置文件:

  • Windows: %APPDATA%\Cursor\User\globalStorage\
  • macOS: ~/Library/Application Support/Cursor/User/globalStorage/
  • Linux: ~/.config/Cursor/User/globalStorage/

生成新的唯一标识符:

  • telemetry.machineId
  • telemetry.macMachineId
  • telemetry.devDeviceId
  • telemetry.sqmId

📄 License

MIT License

Copyright (c) 2024

Description
解决Cursor在免费订阅期间出现以下提示的问题: Your request has been blocked as our system has detected suspicious activity / You've reached your trial request limit. / Too many free trial accounts used on this machine.
Readme MIT 25 MiB
Languages
Shell 58%
Python 17.7%
Go 11.9%
PowerShell 11.7%
Batchfile 0.7%