Synology Windows boot auto-run Rewards daily search task, with random pause times to enhance the naturalness of search behavior, approximately 4 hours to complete.
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.
Current Search Count / Maximum Search Count in the top-right corner of the page.Set the browser homepage to bing.com or continue browsing the last opened webpage.
For convenience, every new tab opens to Bing; install extensions to set new tabs and homepage to bing.com.
For Google Chrome and Edge browsers, install the New Tab Redirect extension.
For Firefox browser, install the New Tab Override extension (Figure 4).
==================================================================================
Press Win + R, enter shell:startup.
Enter the startup folder and place the browser shortcut inside; it will auto-run on boot.
==================================================================================
For Synology Virtual Machine Manager VMs: In the Synology Control Panel - Task Scheduler - Add User-Defined Script (ROOT user), create separate boot and shutdown scripts:
Boot
synowebapi --exec api=SYNO.Virtualization.API.Guest.Action version=1 method=poweron runner=admin guest_name="VMM Virtual Machine Name"
Shutdown
synowebapi --exec api=SYNO.Virtualization.API.Guest.Action version=1 method=shutdown runner=admin guest_name="VMM Virtual Machine Name"
For 33 searches: Approximately 100 to 300 minutes.
Below is a BAT script created in the VM Windows to start Chrome browser at a random time on boot:
@echo off
:: Set initial delay (40 seconds)
timeout /t 40 /nobreak
:: Replace with your EXE program path
start "" "C:\app\Chrome\App\chrome.exe" "https://www.bing.com"
==================================================================================
@echo off
:: Start EXE program (replace with your EXE program path)
start "" "C:\app\Chrome\App\chrome.exe"
:: Wait (2400 seconds) - modify time as needed
timeout /t 2400 /nobreak
:: Close the specified EXE program (replace with your program name, excluding path, just filename)
taskkill /IM "YourProgram.exe" /F