So I have multiple files that in hex editor looks like below:
Offset(h) 00 01 02 03 04 05
1o 10 20 02 00 0A 05 (...)
2o 10 20 53 00 0A 03 (...)
3o 10 20 22 00 0A 55 (...)
4o 10 20 12 00 0A 22 (...)
How do I get the 0A value and store into a variable, knowing that is a fixed position? (always 5th byte)
I need to get the 0A value so I compare to other value and make a decision.
I need to do this in VBscript.
Thanks in advance and appreciate any help