#!/usr/bin/env node /** * 批量注册启动脚本 */ require('dotenv').config(); const BatchRegister = require('./src/tools/account-register/batch-register'); // 配置你的3个 AdsPower Profile ID const PROFILES = [ 'k172d58u', 'k172d4mb', 'k1728p8l' ]; // 启动批量注册 const batch = new BatchRegister({ profiles: PROFILES, // 3个profile concurrency: 1, // 并发3个 maxCount: Infinity, // 无限循环 delayBetweenRuns: 10000, // 批次间隔10秒 maxRetries: 3, // 单次失败重试3次 retryDelay: 30000 // 重试间隔30秒 }); batch.start().catch(error => { console.error('批量注册异常:', error); process.exit(1); });