I have a script that works fine in windows 95/98 but not windows 2000/xp. The code looks something like this:


$cc = 0
$key = 0

if Ingroup("xxxx")
$cc = 1
endif

if Ingroup("yyyy")
$key = 1
endif

if $cc = 1 and $key = 1

At (9,12) "Please choose one of the following classes:
1 Computer Concepts
2 Beginning Keyboarding
Selection : "
Get $selection
select
case ($selection = 1)
use v: "\\server\xxxx$"
case ($selection = 2)
use v: "\\server\yyyy$"
case (1)
? "That is not a valid option"
endselect
sleep 2
endif
if $cc = 1 and $key = 0
use v: "\\server\xxxx$"
endif
if $key = 1 and $cc = 0
use v: "\\server\yyyy$"
endif

I am a newbie, and can't seem to figure why it would be any different for W2k/xp. I have KXRPC installed, and all the required files on the DC's. Works just fine in 95/98.... When I make a selection it comes up with "That is not a valid option", Only on w2k/xp. Any ideas???