Assume a psuedo command:
psuedocmd.exe
It has various parameters like:
/scan /save /savefolder
Now i want to run psuedocmd.exe using batch file. And i would like to use parameters too. I am using the following line in batch file
psuedocmd.exe /scan /save
But in this case psuedocmd.exe is running without the parameters.
savefolder
-parameter if thesave
-parameter is used? You could try replacing the/
with-
. You could also try upper-casing the parameters. Does something basic likeDIR /B
in your batch-script work as intended? – GitaarLAB Apr 19 at 9:20psuedocmd.exe
actually is (is it perhaps Acunetix Web Vulnerability Scanner ? If it is, I know the answer). This way others can try to reproduce the behavior, or scour the internet about possible bugs that might lead to this (unexpected) behavior. – GitaarLAB Apr 19 at 10:07