to every special characters to escape sequence which included these:
% - %%
( - ^(
) - ^)
> - ^>
>> - ^>^>
^ - ^^
As I failed to prepend every special characters of these kinds in my code, I thought that was not the solution but it was my own fault. I had to prepend every special characters as I mentioned above.
Thanks to penpen and aGerman
EDIT: I JUST FIXED MY OWN PROBLEM MYSELF!!! FIX = echo "<text>" >> "<destination\<filename>>"
So, for example, If I want to write something into a file like say '(set CHAR[f]=ERG54S)' then I can't simply just do this:
echo (set CHAR[f]=ERG54S) > text.txt
I will need to add the double quotes as well " " like this:
echo "(set CHAR[f]=ERG54S)" > text.txt
Hello Beautiful People on the Internet!
I'm RedEyedRocker.
I'm trying to create a software and this part gives error. So basically, I'm trying to add the following line into a "Encrypt.bat" file.
All of those directories already exist, no spelling errors or anything.
ERROR:-
Code: Select all
(set CHAR[a]=UDFM45
(set CHAR[f]=ERG54S)
(set CHAR[k]=VCBC3B)
(set CHAR[p]=TH5DF5)
(set CHAR[u]=BCX6DF)
(set CHAR[z]=45T1FG)
(set CHAR[5]=F6DFG1)
(set CHAR[0]=87H8G7)
(set CHAR[(]=45F465)
(set CHAR[\]=45GH45)
set char=~0,1userprofile\Documents\TheRivalsRage\Encrypt-Decrypt\functions\Encrypt.bat
set userInput=~1userprofile\Documents\TheRivalsRage\Encrypt-Decrypt\functions\Encrypt.bat
The system cannot find the path specified.
If you want the part of my full code for "Encrypt.bat" file then here: http://pastebin.com/wPHA0vBG