08-01-2012, 11:02 PM
(This post was last modified: 08-01-2012, 11:08 PM by montcer9012.)
(08-01-2012, 10:43 PM)abood555 Wrote: If I understand Java, am i going to understand those logs?I make the same question to my self hahahaha.
The only language of "programming" i can handle is the batch one on Windows OS. And i say "programming" cause it is just some english words that an already assembly language use to simplify some stuff. Either way, look at this:
I can handle this: (A batch file to erase some games whitout the installer)
Code:
:UNINSTALLx
IF EXIST unINST.CES ATTRIB -H -S unINST.CES && DEL unINST.CES || GOTO UNINSTALLx
:REGEDE
ECHO Windows Registry Editor Version 5.00>Del_X.reg
ECHO.>>Del_X.reg
ECHO [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\X]
REGEDIT /S "%~DP0Del_X.reg">NUL && ECHO Entries deleted . . .>"%TEMP%\Del_X.CES" || ECHO Registry cant be access . . .>"%TEMP%\Del_X.CES"
DEL Del_X.reg || GOTO REGEDE
But this is like chinese for me: (A batch to compress some files)
Code:
:Data1
set arc=Data1.bin
arc a -ep1 -r -w.\ .\Disk1\%arc% -mprecomp:zl98:d1+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "%choice1%\pc\models\*"
if ERRORLEVEL 1 goto arcfail
:Data2
set arc=Data2.bin
arc a -ep1 -ed -r -w.\ -mprecomp:t-jnf:zl98:d1+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 -dp"%choice1%\pc\levels" .\Disk1\%arc% -x@levels1.lst
if ERRORLEVEL 1 goto arcfail
I can understand some commands like "SET" or "arc"; but the usage of ARC (Is a compressor) on the command line is kind of complicated for me. There's one thing i can told you: If you really want to know about this stuff, you must study it; let your brain do the rest and you will see it is not so complicated.