I have my script working on NT and Win2000 machines, but for some reason, Win95 PC's are not recognizing the select case. Does anyone have any ideas as to what I'm doing wrong?? I'd really appreciate any help you could give me!! Thanks,
Sunnie
code:
Break Off

SETTIME \\Server2 ;synchronize time with Server1 Server

use t: "\\Server1\" + @userid + "$$" ;map Drive T to Personal User Directory
use v: "\\Server1\Everyone" ;map Drive V to Department Directory

Select

Case ingroup ("\\Server1\Accounting") = 2
use u: "\\Server1\Acct$$" ;map Drive U to Department Directory

Case ingroup ("\\Server1\Administrators") = 2
use u: "\\Server1\InfoSys$$" ;map Drive U to Department Directory
use s: "\\Server2\Scouting$$" ;map Drive S to Scouting Directory
use w: "\\Server3\Install" ;map Drive W to Install Directory
use x: "\\Server1\Departments" ;map Drive X to Install Directory
use y: "\\Server1\Users" ;map Drive Y to Install Directory
use z: "\\Server1\D$$" ;map drive Z to D$ Root Directory

Case ingroup ("\\Server1\Alumni") = 2
use u: "\\Server1\Alumni$$" ;map Drive U to Department Directory

Case ingroup ("\\Server1\Baseball") = 2
use u: "\\Server1\Bball$$" ;map Drive U to Department Directory

Case ingroup ("\\Server1\BROADCASTING") = 2
?"Sunnie, I made it to the Broadcasting Case"
use u: "\\Server1\BROAD$$" ;map Drive U to Department Directory

Case ingroup ("\\Server1\Scouting") = 2
use u: "\\Server1\Scoutng$$" ;map Drive U to Department Directory
use s: "\\Server2\Scouting$$" ;map Drive S to Scouting Directory

Case ingroup ("\\Server1\Information Systems") = 2
use u: "\\Server1\InfoSys$$" ;map Drive U to Department Directory
use w: "\\Server3\Install" ;map Drive W to Install Directory

Case ingroup ("\\Server1\Customer Serive") = 2
use u: "\\Server1\CustSrv$$" ;map Drive U to Department Directory

Case ingroup ("\\Server1\Trainers") = 2
use u: "\\Server1\Trainers$$" ;map Drive U to Department Directory

Case ingroup ("\\Server1\Diamond Club") = 2
use u: "\\Server1\Dmndclb$$" ;map Drive U to Department Directory

Case ingroup ("\\Server1\Human Resources") = 2
use u: "\\Server1\HumanR$$" ;map Drive U to Department Directory


Case ingroup ("\\Server1\Merchandising") = 2
use u: "\\Server1\Merch$$" ;map Drive U to Department Directory

Case ingroup ("\\Server1\PNC Park") = 2
use u: "\\Server1\Project$$" ;map Drive U to Department Directory

Case ingroup ("\\Server1\Fitness") = 2
use u: "\\Server1\Fitness$$" ;map Drive U to Department Directory

Case ingroup ("\\Server1\Intern") = 2
use u: "\\Server1\Intern$$" ;map Drive U to Department Directory

Case ingroup ("\\Server1\Pirate City") = 2
use u: "\\Server1\PirCity$$" ;map Drive U to Department Directory

Case ingroup ("\\Server1\Executive") = 2
use u: "\\Server1\Exec$$" ;map Drive U to Department Directory

Case ingroup ("\\Server1\Media Relations") = 2
use u: "\\Server1\Media$$" ;map Drive U to Department Directory

Case ingroup ("\\Server1\Public Relations") = 2
use u: "\\Server1\PR$$" ;map Drive U to Department Directory

Case ingroup ("\\Server1\Operations") = 2
use u: "\\Server1\Oper$$" ;map Drive U to Department Directory

Case ingroup ("\\Server1\Ticket Office") = 2
use u: "\\Server1\TcktOf$$" ;map Drive U to Department Directory

Case ingroup ("\\Server1\Telemarketing") = 2
use u: "\\Server1\Tele$$" ;map Drive U to Department Directory

Case ingroup ("\\Server1\Marketing") = 2
use u: "\\Server1\Mrktg$$" ;map Drive U to Department Directory

Case ingroup ("\\Server1\Minor Leagues") = 2
use u: "\\Server1\Minor$$" ;map Drive U to Department Directory

Case 1
?"Error...Please contact the help desk immediately - extension 6021"
?
?"Hit Any Key To Continue..." get $C

EndSelect

Exit