This PowerShell script automates the process of performing Bing searches to earn rewards points. It generates random search queries and executes them, helping you maximize your rewards effortlessly. 🚀
- 🎲 Randomly generates search queries from a predefined list.
- 🤖 Automates the process of opening Bing search results.
- ⏱️ Saves time by running searches automatically.
Before running the script, ensure you have the following:
- Windows PowerShell (pre-installed on most Windows systems).
- Google Chrome or Microsoft Edge installed as the default browser. 🌐
- A valid Bing Rewards account. Ensure you are logged in to your Microsoft account before running the script. ✅
Download the Search.ps1
file from this repository to your local machine.
By default, PowerShell scripts are restricted from running. To enable execution:
- Open PowerShell as Administrator.
- Run the following command to allow script execution:
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted
- Confirm the change by typing
Y
when prompted. 🛡️
- Navigate to the directory where the script is saved using PowerShell:
cd path\to\your\script
- Execute the script:
.\Search.ps1
The script will begin running searches automatically. 🖥️
The script will log the queries it runs. Ensure Bing Rewards reflects the earned points after execution. 🏆
You can customize the list of search queries by editing the $phrases
array in the script. Add or remove queries to suit your preferences.
$phrases = @(
"Query 1",
"Query 2",
"Query 3",
...
)
- Error: "Execution of scripts is disabled on this system"
- Ensure you have enabled script execution as described in Step 2.
- No Rewards Earned
- Verify that you are logged into your Microsoft account before running the script.
- Browser Compatibility Issues
- Ensure your default browser supports Bing searches and is logged into your Microsoft account.
This script is for educational purposes only. Automating searches may violate Bing Rewards’ terms of service. Use at your own discretion.
Feel free to fork this repository and suggest improvements via pull requests. Let's make this tool better together! 💡
This project is licensed under the MIT License. See the LICENSE
file for details.