It was more of a theory question than a practical problem. I have had experiences before we're I've needed to store data, but been unable as it would be accessable to anybody on can edit a file... Many software(s?), store their data in a way so that it is not easily editable from outside the applica...
Ok, I know that there is always someone out there who can crack any kind of encryption, but this is to stop your average user/small time power user. How can I encrypt a file, so that it's contents are not easily editable... E.g. You can't just go into an exe file and edit away. This is to store data...
Thank you everyone so much for you input! In the end, after fiddling with bhx, I programmed my own little hex converter in vb.net (hehe vb.net ). Thankyou again for all the help!!! I couldn't've figured it out without you
Greetings all! I have some exe files, and I'd like to make an installer for them, from batch. (Not from the language they're programmed in) Can I write these exe's using batch somehow? (Instead of just packaging the exe's with the installer)
Thanks for all your help foxidrive! Another question - cls IF NOT "%~1"=="" ( set "gotit=" for /f "delims=" %%a in (Data\inventory.fldr) do if "%%a"=="%1" set item=%%a if defined %item% ( echo TRUE ) else ( echo FALSE ) pause ) else ( echo ...
Also - cls IF NOT "%~1"=="" ( set "gotit=" for /f "delims=" %%a in (Data\swap.fldr) do if "%%a"="armour" set gotit=1 if defined gotit echo you have the armour. pause ) else ( echo drop what? pause ) Even if I define a parameter, it still cl...