Jump to content

Important Batch Discovery


Adrianvdh

Recommended Posts

Hello everyone a few days ago I asked LIGHTNING UK! how to do this after I have been looking all over for it, I have discovered how to encrypt a text string with a batch file. i.e This is a basic batch file I made to give it a try but it works

 

 

:start

echo Enter:

set /p var=

echo %var%|findstr /i "a" >nul>nul

IF %ERRORLEVEL% EQU 0 set a=HTDS

echo %var%|findstr /i "b" >nul>nul

IF %ERRORLEVEL% EQU 0 set b=KTMD

echo %var%|findstr /i "c">nul>nul

IF %ERRORLEVEL% EQU 0 set c=HERN



echo.%a%%b%%c%

pause

 

but the only problem is it can only convert a single symbols

 

So that is the only problem it cant produce the final product, It can only convert it ;):(

Link to comment
Share on other sites

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.