I am trying to write a windows batch file that will open my ADB Shell...then write one command and execute within the adb shell, not the windows command prompt. I am trying to figure out how I get the batch to write the command after opening the adb shell into that prompt instead of command prompt. When I attempt it now, it opens the adb shell but then writes the command I am trying to execute in command prompt instead of the adb shell.
This is what I would manually do after opening my windows command prompt.
cd\
cd adb
adb shell
iperf -s -u -il -p0001 - this line is written in the adb shell prompt $ to open particular port for data
Any help for this newbie would be much appreciated.