I am using the following lines in my script:

IF @PRODUCTTYPE = ("Windows 2000 Professional") OR ("Windows XP Professional")
GOTO INST
ELSE
? "This workstation is not Windows 2000 Professional or Windows XP Professional"
EXIT

It always jumps to INST even if using a Win2K server. Can someone tell me the proper syntax to use? Should I use the Select case command?

Thank You