AutoWirelessADB is a script that automates the process of configuring a connected Android device to a wireless connection using ADB (Android Debug Bridge).
This repository contains a batch script that simplifies the task of configuring an Android device to a wireless connection through ADB commands. The script streamlines the process, enhancing efficiency and ease of use.
To use this script, follow these steps:
- Ensure that both your computer and the Android device are connected to the same network.
- Connect your Android device to your computer using a USB cable.
- Run the batch script
AutoWirelessADB.bat
. - Follow the on-screen instructions to configure the wireless connection for the connected device.
Before using this script, ensure the following:
-
ADB Path added to Environmental Variables: The ADB (Android Debug Bridge) executable path should be added to your system's environmental variables, allowing global access to ADB commands. If not done, follow the instructions below:
- Windows:
- Open the Start menu and search for "Environment Variables."
- Click on "Edit the system environment variables."
- Click on the "Environment Variables" button.
- Under "System variables," scroll down and find "Path," then click "Edit."
- Click "New" and add the path to the directory where ADB is located (e.g.,
C:\Users\USERNAME\AppData\Local\Android\Sdk\platform-tools
). - Click "OK" to save the changes.
Ensure that ADB is installed and available in the specified path.
- Windows:
No specific installation is required for this script. Simply download or clone the repository to your local machine.
MIT License
Copyright (c) 2023 Nirbhay Sirsikar
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.