Files
html/api/blade-tasks/mega_signup.json
2026-04-12 22:57:03 +02:00

1 line
1.2 KiB
JSON

{"type": "powershell", "priority": "P0", "action": "mega_signup_all", "description": "Signup ALL free AI services + extract DS JWT", "script": "\n$scripts = @(\n 'ds-jwt.ps1',\n 'xai-signup.ps1',\n 'siliconflow-signup.ps1',\n 'cohere-signup.ps1',\n 'hf-chat.ps1',\n 'copilot-setup.ps1'\n)\n$base = 'https://weval-consulting.com/api/blade-scripts'\nNew-Item -ItemType Directory -Force -Path C:/temp | Out-Null\n$results = @()\nforeach ($s in $scripts) {\n try {\n Invoke-WebRequest -Uri \"$base/$s\" -OutFile \"C:/temp/$s\" -UseBasicParsing\n $out = powershell -ExecutionPolicy Bypass -File \"C:/temp/$s\" 2>&1 | Out-String\n $results += \"$s : $out\"\n Write-Output \"DONE: $s -> $($out.Trim().Substring(0, [Math]::Min(80, $out.Trim().Length)))\"\n } catch {\n $results += \"$s : ERR: $_\"\n Write-Output \"FAIL: $s -> $_\"\n }\n Start-Sleep 2\n}\n$body = @{action='log';service='mega_signup';results=$results} | ConvertTo-Json -Depth 3\nInvoke-RestMethod 'https://weval-consulting.com/api/wevia-deepseek-proxy.php' -Method POST -Body $body -ContentType 'application/json'\nWrite-Output \"ALL DONE: $($results.Count) scripts executed\"\n", "timeout": 120}