| 1. |
Solve : Change variable for each loop? |
|
Answer» Okay im trying to basically display text from a text file inside the batch file using a trick i found on the internet. Google for, or search alt.msdos.batch.nt on (Google Groups) for "call set". Okay thank for the help, but i found a solution, was trying to do something like this. @ECHO Off echo encrypt batch file echo. set /P "FILE= Enter the name of the batch file that you wish to encrypt (Example; "Somefile") : " set /A CREATEKEY=%RANDOM% %%200 +2 Setlocal EnableExtensions EnableDelayedExpansion for /f "delims=" %%A in (%FILE%.txt) do ( Set /a C+=1 Set X[!C!]=%%A set CHECKPASSWORD=%%A set CHECKKEY=%%B set CHAR=0123456789bhfcjrwmudaxopvntzlqeisykg for /l %%C in (10 1 36) do ( for /f %%D in ("!CHAR:~%%C,1!") do ( set /a MATH=%%C*%CREATEKEY% for /f %%E in ("!MATH!") do ( set "CHECKPASSWORD=!CHECKPASSWORD:%%D=-%%E!" ) ) ) echo !CHECKPASSWORD! >> %FILE%.Zask ) Set X Setlocal DisableExtensions DisableDelayedExpansion echo @ECHO Off >> Decrypt.bat echo. >> Decrypt.bat echo Setlocal EnableExtensions EnableDelayedExpansion >> Decrypt.bat echo for /f "delims=" %%%%A in (%FILE%.zask) do ( >> Decrypt.bat echo Set /a C+=1 >> Decrypt.bat echo Set X[!C!]=%%%%A >> Decrypt.bat echo set CHECKPASSWORD=%%%%A >> Decrypt.bat echo set CHECKKEY=%%%%B >> Decrypt.bat echo set CHAR=0123456789bhfcjrwmudaxopvntzlqeisykg >> Decrypt.bat echo. >> Decrypt.bat echo for /l %%%%C in (10 1 36) do ( >> Decrypt.bat echo for /f %%%%D in ("!CHAR:~%%%%C,1!") do ( >> Decrypt.bat echo set /a MATH=%%%%C*%CREATEKEY% >> Decrypt.bat echo for /f %%%%E in ("!MATH!") do ( >> Decrypt.bat echo. >> Decrypt.bat echo set "CHECKPASSWORD=!CHECKPASSWORD:%%%%E=%%%%D!" >> Decrypt.bat echo ) >> Decrypt.bat echo ) >> Decrypt.bat echo ) >> Decrypt.bat echo for /f %%%%F in ("!CHECKPASSWORD!") do ( >> Decrypt.bat echo set "CHECKPASSWORD=!CHECKPASSWORD:-=!" >> Decrypt.bat echo !CHECKPASSWORD! >> Decrypt.bat echo ) >> Decrypt.bat echo ) >> Decrypt.bat echo Set X >> Decrypt.bat Kinda lame just BORED though. |
|