Reputation: 11
C:\Users\hp>adb shell dumpsys window | find "mCurrentFocus" 'find' is not recognized as an internal or external command, operable program or batch file.
C:\Users\hp>adb shell dumpsys window | find "mCurrentFocus" 'find' is not recognized as an internal or external command, operable program or batch file.
Upvotes: 0
Views: 1083
Reputation: 1
In windows find don't exist, you need to put findstr or you can do adb shell after this use grep like this. adb shell dumpsys window displays| findstr "mCurrentFocus"
adb shell dumpsys window displays| grep "mCurrentFocus"
Upvotes: 0