Bear with me, it's been a while. :)
What's a good way to validate command line arguments passed to an MS-DOS script batch?
For example, here's what I want to do:
IF "%1"=="" throw "Missing 1st argument: Machine Name"
IF "%2"=="" throw "Missing 2nd argument: File Path"
source
to share