I am worried about that T07 Win 10 64bit v2 has tools folder on C drive.
What is this?
Moreover, there are 3 command files in that, start with numbers 0, 1 and 2.
The 1-OA3_FlashKey.cmd's code are this:
if "%PROCESSOR_ARCHITECTURE%" == "x86" (
cd /d C:\tools\OA3Tools_x86
)
else (
cd /d C:\tools\OA3Tools_amd64
)
call FlashKey.cmd
I am worried about the command is wrong, but it works.
"else" should be after ")".
if "%PROCESSOR_ARCHITECTURE%" == "x86" (
cd /d C:\tools\OA3Tools_x86
) else (
cd /d C:\tools\OA3Tools_amd64
)
call FlashKey.cmd
Anyway, it works correctly, haha!