I've slowly gotten closer, step by step, to finishing this batch file of mine.
This time, I need to be able to pull information from a text file into the batch file.
For example, I'd like to be able to pull information such as a username and a password from a text file, and use it in the batch file as some kind of variable. Something like this:
in this case the username and password would be stored on a separate file.
I'm hoping it'll be something easy-ish in order to do something like
This time, I need to be able to pull information from a text file into the batch file.
For example, I'd like to be able to pull information such as a username and a password from a text file, and use it in the batch file as some kind of variable. Something like this:
+login %username% %password%
in this case the username and password would be stored on a separate file.
I'm hoping it'll be something easy-ish in order to do something like
set username=[information pulled from file here]
set password=[information pulled from file here]
Last edited: