yup basically if i use myloginname: charles it will execute my loginscript on ANY MACHINES. What happens is if i login to one of my SERVERS it will execute the SAME loginscript. so to remedy the problem i add if statement that if @WKSTA = "server1" then goto end this will bypass the loginscript.
this works fine with one server "server1" but i need to make a LIST of servers that if it belongs to this list then GOTO END.

so i need something like this
$bypasslist = "'servertest', 'server2test', 'test3'"
If @WKSTA = "$bypasslist"
gosub END