Wondering if someone could give me a hand with basic variables. I'm basically looking to create a user prompt that will ask for a numeric value up to 4 digits. It would then prompt the user to obtain a yes or no value for default printer. It would use the above information to launch one of two command line's to install printers via command prompt. If this is in the wrong location, my apologies. The numeric value entered by the user would fill the 'bolded' number below. Thanks
RUN ("Y:\BATCH\nipp.exe")
WinWaitActive("Novell iPrint Client Setup")
SEND ("!n")
; Delays the execution of the !F long enough for client to complete install
Opt("WinWaitDelay", 9000)
WinWaitActive("Novell iPrint Client Setup")
SEND ("!f")
; Need to add the variables ??
; Enter the numbers after RP in your printer name. (Example RP0004 would be 0004)
; Would you like this to be your default printer, YES or NO
RUN ("C:\WINNT\SYSTEM32\iprntcmd.exe http://www.xxx.xxx/ipp/RP0004 /add")
