I was trying to get certain fastboot variables from a batch file. I was using something like :
for /f "tokens=2 delims=:" %%a in ('fastboot.exe getvar version-bootloader') do @echo version is %%a
But I get the output on command line, not in the variable %%a. the command 'fastboot.exe getvar version-bootloader' works perfectly in command-line. I also tried doing:
fastboot.exe getvar version-bootloader >> temp.txt
but temp.txt is always empty and i receive the output on the command line, instead of the file. Is there an alternative to this?
fastboot output is directed to error stream, you can direct error stream to standard stream by adding 2>&1
you should use:
for /f "tokens=2 delims=: " %%a in ('fastboot.exe getvar version-bootloader 2^>^&1 ^| findstr version') do @echo version is %%a