Files
Microsoft-Rewards-Bot/docs/FAQ.md
2025-11-08 18:25:51 +01:00

8.7 KiB

Frequently Asked Questions (FAQ)

Quick answers to common questions

📚 Back to Documentation Hub


📋 Table of Contents


General Questions

What is this project?

This is an automated script that completes Microsoft Rewards tasks to earn points. It uses Playwright to control a browser and perform searches, quizzes, and other activities automatically.

The script itself is legal software. However, using automation tools may violate Microsoft's Terms of Service, which could result in account suspension or ban. Use at your own risk.

Will I get banned?

There's always a risk when using automation. The script includes humanization features and anti-detection measures to reduce risk, but we cannot guarantee account safety. Many users have used it successfully for extended periods, but results vary.

How many points can I earn per day?

Typically 150-300 points per day per account, depending on available activities and your region. This varies by country and account type.

How long does a run take?

Usually 5-15 minutes per account, depending on:

  • Number of searches required
  • Available daily activities
  • Humanization delay settings
  • Internet speed

Installation & Setup

What are the system requirements?

  • Node.js 20+ (version 22 recommended)
  • 2 GB RAM minimum (4 GB recommended)
  • Windows, macOS, or Linux
  • Stable internet connection

Do I need to install a browser?

No! Playwright downloads Chromium automatically during setup. You don't need Chrome or Edge installed.

Can I use this on a Raspberry Pi?

Yes, but performance may be limited. Headless mode is recommended for resource-constrained devices.

How do I update to the latest version?

# Using Git
git pull origin main
npm install
npm run build

# Or run the update script
npm run setup

Can I run this on a server 24/7?

Yes! Use Docker with your preferred scheduler (cron, Kubernetes CronJob, etc.) or enable the image's optional cron mode. See the Docker Guide.


Configuration

Where do I put my Microsoft credentials?

In src/accounts.jsonc. Copy src/accounts.example.jsonc as a template.

⚠️ Never commit this file to Git! It should be in .gitignore.

Do I need to enable 2FA/TOTP?

Not required, but highly recommended for:

  • Automated login without manual code entry
  • Better security
  • 24/7 automation compatibility

See the Accounts & 2FA Guide.

How do I schedule automatic runs?

Use your operating system's scheduler. For example, Task Scheduler on Windows or cron/systemd timers on Linux:

# Windows Task Scheduler action (PowerShell)
powershell.exe -NoProfile -Command "cd 'C:\\Path\\To\\Microsoft-Rewards-Script'; npm run start"

# Linux cron example (daily at 09:15)
15 9 * * * cd /home/you/Microsoft-Rewards-Script && /usr/bin/env npm run start >> /home/you/rewards.log 2>&1

See the External Scheduling Guide for detailed steps.

Can I run multiple accounts?

Yes! Add multiple entries to accounts.jsonc and adjust the clusters setting:

{
  "execution": {
    "clusters": 2  // Run 2 accounts in parallel
  }
}

Should I use headless mode?

  • Headless (true): Background operation, required for Docker, lower resource usage
  • Non-headless (false): See what the bot is doing, easier debugging

For production/automated runs, use headless mode.


Troubleshooting

The script won't start

  1. Check Node.js version: node --version (must be 20+)
  2. Rebuild: npm run build
  3. Check accounts.jsonc: Valid JSON format?
  4. Review logs: Look for error messages

Login fails constantly

  • Wrong credentials: Double-check email/password
  • 2FA issues: Verify TOTP secret is correct
  • Account locked: Check Microsoft account security page
  • Recovery email mismatch: Ensure recovery email matches account settings

See Accounts Troubleshooting.

No points are earned

  • Already completed: Tasks may be done for the day
  • Region restrictions: Some activities vary by country
  • Account level: New accounts may have limited activities
  • Ban/suspension: Check account status on Microsoft Rewards

Browser crashes or freezes

  • Increase timeout: Adjust browser.globalTimeout in config
  • Reduce load: Lower clusters value
  • Update dependencies: npm install
  • Check system resources: Ensure adequate RAM

Docker container exits immediately

  1. Check logs: docker logs microsoft-rewards-bot
  2. Verify mounts: Ensure accounts.jsonc exists and is mounted
  3. Check config: headless must be true for Docker
  4. Review environment variables: Timezone, cron settings

See Docker Troubleshooting.

"Command not found" errors

Ensure you're in the project directory and have run npm install.


Safety & Security

How can I minimize ban risk?

  1. Enable humanization: Keep humanization.enabled: true
  2. Use reasonable delays: Don't make searches too fast
  3. Run consistently: Daily runs at similar times
  4. Start with one account: Test before scaling
  5. Monitor for warnings: Check logs regularly
  6. Use vacation mode: Enable random off-days

See Humanization Guide.

Is my data safe?

  • No telemetry: The script doesn't send data anywhere except Microsoft
  • Local storage: Credentials stay on your machine
  • Open source: You can audit the code

See Security Policy.

Can Microsoft detect this?

The script uses advanced anti-detection techniques:

  • Browser fingerprinting management
  • Human-like mouse movements and delays
  • Natural search patterns
  • Randomized timing

However, no detection evasion is foolproof. Always use at your own risk.

Should I use a proxy?

Not required for most users. Consider a proxy if:

  • Running many accounts from one IP
  • Want extra privacy layer
  • Your IP is rate-limited

See Proxy Guide.


Features & Functionality

What tasks does the script complete?

  • Desktop searches (30+)
  • Mobile searches (20+)
  • Daily set activities (quizzes, polls)
  • More activities (promotional offers)
  • Punch cards (multi-day challenges)
  • Daily check-in
  • Read to Earn articles

Configure in config.jsonc under workers.

Can I disable specific activities?

Yes! In config.jsonc:

{
  "workers": {
    "doDesktopSearch": true,
    "doMobileSearch": false,  // Disable mobile searches
    "doDailySet": true,
    "doMorePromotions": false  // Disable promotions
  }
}

How does the query generation work?

The script uses multiple sources for search queries:

  • Google Trends: Current trending topics
  • Reddit: Popular posts from various subreddits
  • Local fallback: Pre-defined queries

This creates diverse, natural-looking search patterns.

See Query Diversity Engine.

Can I get notifications?

Yes! The script supports:

  • Discord Webhooks: Summary messages in Discord
  • NTFY: Push notifications to mobile

See Notifications Guide and NTFY Guide.

What are "clusters"?

Clusters allow running multiple accounts in parallel using separate processes. Higher values = more accounts simultaneously (but more resource usage).

{
  "execution": {
    "clusters": 3  // Run 3 accounts at once
  }
}

How does the risk management system work?

The script includes:

  • Ban detection: Monitors for suspension indicators
  • Risk prediction: ML-based ban probability scoring
  • Adaptive delays: Automatically adjusts timing based on risk
  • Emergency stop: Halts execution on critical risk

See Configuration Guide.


Still Have Questions?