When I have a package with multiple cmd command steps does each step happen in its own cmd window or does the second step keep going where the first step stopped ?
Is it possible to write multiple commands in one cmd command step ?
I was actually testing multiple commands in a single step yesterday and got it working. If you put an ampersand (&) between the commands, that will run each command in sequence.
Also keep in mind that using a single (&) will execute the second statement even if the first fails. If you use a double (&&) then the second statement will only execute if the first succeeds.
I was actually testing multiple commands in a single step yesterday and got it working. If you put an ampersand (&) between the commands, that will run each command in sequence.