Microsoft Rewards Daily Task Script
This script is designed to automatically complete Microsoft Rewards daily search tasks, helping users easily earn points while reducing the risk of account monitoring or bans.
Key Features
- Automatic Search: Simply open any *.bing.com page to start daily searches
- Randomized Searches:
- Each search uses different trending keywords, supported sources:
- TikTok Trending
- Weibo Trending
- Bilibili Trending
- Baidu Hot Search
- Toutiao Hot Search
- Falls back to default classic keywords if API fails
- Random Pauses:
- Pauses randomly for 10–15 minutes after every 5 searches
- Prevents detection from too many searches in a short time
- Daily Counter Reset:
- Resets the search counter automatically at midnight (00:00)
- Prevents script from being stuck after reaching the limit
- Floating Search Progress Display:
- Displays
Current Searches / Max Searches
in the top-right corner
- Allows real-time progress monitoring
- Menu Commands:
- "Start": Resets counter and begins searching
- "Stop": Immediately halts searching
主页设置
浏览器设置主页为bing.com 或 继续浏览上次打开的网页
省心每次打开都是bing 可安装插件设置新标签和主页为bing.com
谷歌和EDGE浏览器可以安装New Tab Redirect 插件
火狐浏览器 安装New Tab Override插件 (图4)
任务时长
- 如30次搜索有29个间隔。
- 每个间隔包括:随机延迟10-30秒(平均20秒) + 暂停3-12分钟(平均7.5分钟=450秒)。
- 总平均时间 ≈ 29 * (20 + 450) = 29 * 470 = 13630秒 ≈ 227.17分钟 ≈ 3小时47分钟。
- 最小时间:29 * (10 + 180) = 5510秒 ≈ 91.83分钟。
- 最大时间:29 * (30 + 720) = 21750秒 ≈ 362.50分钟 ≈ 6小时。
- 此脚本为自动挂机任务,随机时间越长,越不容易被检测。
Instructions
- Install Tampermonkey or Violentmonkey browser extension
- Install this script
- Open Bing, and the search tasks will run automatically
- Check progress via the floating display in the top-right corner
- Use menu commands to manually start or stop searching
1. Windows Auto-Start on Boot
Press Win + R, type shell:startup
Place your browser shortcut in the startup folder, and it will auto-run on boot.
2. NAS Virtual Machine Auto-Run
For Synology’s Virtual Machine Manager (VMM),
In Synology Control Panel → Task Scheduler → Add User-Defined Script (as ROOT) to create startup and shutdown tasks.
Power On
synowebapi --exec api=SYNO.Virtualization.API.Guest.Action version=1 method=poweron runner=admin guest_name="VMM_VM_Name"
Shut Down
synowebapi --exec api=SYNO.Virtualization.API.Guest.Action version=1 method=shutdown runner=admin guest_name="VMM_VM_Name"
For 33 searches: about 60–99 minutes
Below is a Windows batch script inside the VM to set random startup delay for launching Chrome:
@echo off
:: Initial delay 5 minutes (300 seconds)
timeout /t 300 /nobreak
:: Generate random delay (5–20 minutes, i.e., 300–1200 seconds) to avoid abnormal fixed-time search starts
set /a delay=(%RANDOM% %% 901) + 300
:: Wait for random delay
timeout /t %delay% /nobreak
:: Replace with your EXE program path
start "" "C:\app\Chrome\App\chrome.exe"
3. Windows Auto-Run with Auto-Exit
@echo off
:: Start EXE program (replace with your EXE path)
start "" "C:\app\Chrome\App\chrome.exe"
:: Wait 60 minutes (2400 seconds)
timeout /t 2400 /nobreak
:: Close the specified EXE program (replace with your EXE program name, not path, just filename)
taskkill /IM "YourProgram.exe" /F