Very simple question I am sure.
I have a file called ACLReader.vbs which I have written. I want a user to be able to run a batch file
I also want the batch to take a paramater and pass it to ACLReader.vbs instead of using testText.txt (as the user would if execute ACLReader.vbs from the command line)
This is what I have from googling but it doesn't work:
%~d0
cd %~p0
cscript ACLReader.vbs testText.txt
Thanks!