Quote:
Originally Posted by DNSB
PowerShell needs you to prefix the command with .\ to run a local command. When I try running adb from a admin PowerShell session, I get the following suggestion:
This works with PowerShell 5.1.22621.963 or PowerShell 7.3.3.
Double check the port shown in Bluestacks when you enabled adb. On mine, it showed 62047 as the port. So my command line was "adb.exe connect 127.0.0.1:62047" or using PowerShell syntax, ".\adb.exe connect 127.0.0.1:62047"
|
Hi there, thank you SO much! I got it to work with ".\adb.exe connect 127.0.0.1:5555"
I really appreciate the help.