Topic: Easy2Boot

Date 17/01/2015

By SteveSi

Subject Re: Re: Re: Re: True Hide feature and comments on VMwareWks11+E2B

Yes, I tested UEFI Win8/8.1 with VBox.
re. hiding
You could try the find command in a batch file

e.g.

!BAT
find > (md)0x300+1
cat --locate=\x0a --replace=\x20 (md)0x300+1
cat (md)0x300+1 | call :g
goto :eof


:g
if "%1"=="" goto :eof
echo Now we test %1
# code here!
shift
goto :g

Back