When you are working with an Android Studio basis for your SDK (ANDROID_HOME) environment variable in Windows the commands that are executed through CommandUtils.Run target
C:\Windows\system32\cmd.exe C:\Program Files (x86)\Android\android-studio\sdk\platform-tools\adb.exe
However this path is invalid (due to spaces in the path name.) It should utilize the following:
"C:\Windows\system32\cmd.exe" "C:\Program Files (x86)\Android\android-studio\sdk\platform-tools\adb.exe"
This should ensure proper execution of the binaries in both locations regardless of system configuration or setup. Additionally this issue effects calls to uninstall on exception which follow from this error which happens when “Launching” to an Android device.