User is prompted to enter a computer name (via a custom page)
I use:
to find the results of the user input...ReadINIStr $R0 "$PLUGINSDIR\test.ini" "Field 1" "State"
that's straight from the InstallOptions documentation..and matches my test.ini file.
All NSIS will give me is "success" when I check $R0
How do I get $R0 to reflect what the user typed in, instead of "success"?
this is my first time I'm referring to the Stack so I'm not familiar with Popping and pushing.
Do I need to
POP $R0
THEN
ReadINIStr $R0 ?
🤨