I have a really simple question:
I want to store two user-entered variable strings in the registry and be able to access it later when the batch runs again. I have been googling for a while and can't seem to find the answer.
It can be stored in any registry as long as it will be available on next execution.
Here is the flow of what needs to happen:
:: Check if variable_a/b is available in reg, else ask user....?
SET /p variable_a="Enter a string: "
SET /p variable_b="Enter a string: "
:: Store both vars somehow....?
echo My variables:
echo variable_a
echo variable_b
Can you please help me solve this simple problem?