in my one batch file i set a variable, after running this batch file it shows the error "The input line is too long." how to overcome from this problem. or it is possible to increase the input line length(max) in windows?
Asked
Active
Viewed 4,422 times
1 Answers
1
As per my comment, to delimit a line in a batch file, append the ^
character to the line. Eg:
somelong command ^
carries on here ^
and finally ends here
This will behave as 1 line.
Not however if this will overcome the input length limitation.
-
@Benoit: Jeez, thanks for typo fix, it confused the hell out of me just now ;P MOAR COFFEE! – leppie Oct 14 '10 at 06:23
-
u can haz kophee. I think you had delimited too much in your answer. :) – Benoit Oct 14 '10 at 06:26