Answer: Do Windows batch files have a %* construction? #solution #fix #it
Answer: Do Windows batch files have a %* construction? #solution #fix #it
Do Windows batch files have a %* construction?
In a batch file, do I have to do (e.g.) the following?
@echo off call other.bat %1 %2 %3 %4 %5 %6 %7 %8 %9
Answer [by Roger Lipscombe]: Do Windows batch files have a %* construction?
Windows batch files (since Windows XP, but possibly earlier) support the %* construct, which evaluates to all the parameters from %1 onwards.
Unfortunately, this…
View On WordPress











