Script is invalid due to `tar` command
FIX :
1-right click "Runme.bat" and choose "edit" from menu.
2-convert second line which is
Code:
bin\tar -H ustar -c recovery.img > recovery.tar
to
Code:
bin\tar -cf recovery.tar recovery.img
3-save file and close notepad.
4-put recovery.img file in the folder and run "Runme.bat"
make sure to first remove the existent recovery.tar.md5 from the folder (I don't think it matters but prompt wouldn't come up for overwrite).
@cabloomi good effort and nice tool, saved me personally the trouble of rebooting every time I have to create a .tar.md5 from a .img, I don't know why you used the tar command in this way though, `man tar` clearly states command `tar -cf archive.tar foo` to create .tar files. Please clear that up for me. Same thing with `md5sum`, if you look up man for it, the command is different.
EDIT: I attached a file with the script fixed.