UNIMPORTANT BACKSTORY: So, I’m passing a filename to a subroutine that creates a BAT file [to be run once]. The filename has percent signs in it -- ugh. After an hour of fussing with setdos, which needs to be x-3 in some situations, x-4 in others.... I successfully achieve the goal of getting the % sign properly represented in the generated bat file.
THE REAL PROBLEM:
I have a (generated) BAT file that looks like this:
Read more
THE REAL PROBLEM:
I have a (generated) BAT file that looks like this:
Code:
@Echo on
@setdos /x-4
rem This setdos /x-4 makes the % in the...
Read more