I'm currently making a stupid UI(User Interface) for a bunch of scripts I've made with vbs. For the beginning of the script you can choose a "Setup" option. It asks for you name and stuff. Anyways, what I'm trying to do is have a script so it saves the name that is inputted and used the next time the program is ran if they don't choose the setup option. Here's the part where it happens.
Entry = Inputbox("Welcome To The Solus Project!" & vbNewLine & "" & vbNewLine & "Enter" & vbNewLine & "Setup" & vbNewLine & "Quit", "Solus Entry")
If Entry = "Setup" Then
InputName = Inputbox("Please Enter Your Name", "Name")
ElseIf Entry = "Quit" Then
Wscript.Quit
ELseIf Entry = "Enter" Then
So once it saves the name to the variable "Entry" I'd like to be able to use it later if the script is re-run so people don't have to constantly use the "Setup" option to refresh their name. Thanks in advance,
-BTH